From b715e75eaa323da1c5201638a40c68cb17edd4e7 Mon Sep 17 00:00:00 2001 From: devtools-ci-cd Date: Tue, 11 Mar 2025 16:52:30 +0100 Subject: [PATCH 1/2] fix(domain): ensure scaleway_domain_record updates on apply --- internal/services/domain/record.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/services/domain/record.go b/internal/services/domain/record.go index b385ceb9be..c6925dbd4c 100644 --- a/internal/services/domain/record.go +++ b/internal/services/domain/record.go @@ -413,9 +413,7 @@ func resourceDomainRecordRead(ctx context.Context, d *schema.ResourceData, m int _ = d.Set("root_zone", dnsZones.DNSZones[0].Subdomain == "") // retrieve data from record - if len(currentData.(string)) == 0 { - currentData = flattenDomainData(record.Data, record.Type).(string) - } + currentData = flattenDomainData(record.Data, record.Type).(string) d.SetId(record.ID) _ = d.Set("dns_zone", dnsZone) From 0dcc12c0fcbb8a32c75a25e28c64fb19e982d955 Mon Sep 17 00:00:00 2001 From: devtools-ci-cd Date: Wed, 12 Mar 2025 11:13:10 +0100 Subject: [PATCH 2/2] fix(domain): ensure scaleway_domain_record updates on apply --- internal/services/domain/record.go | 8 +- internal/services/domain/record_test.go | 15 +- ...a-source-domain-record-basic.cassette.yaml | 2155 ++++++++--------- ...ata-source-domain-zone-basic.cassette.yaml | 182 +- .../domain-record-arobase.cassette.yaml | 280 +-- .../domain-record-basic.cassette.yaml | 1175 ++++----- .../domain-record-basic2.cassette.yaml | 1140 +++++---- .../domain-record-cname.cassette.yaml | 524 ++-- .../domain-record-geo-ip.cassette.yaml | 364 +-- .../domain-record-http-service.cassette.yaml | 364 +-- .../domain-record-srv-zone.cassette.yaml | 228 +- .../testdata/domain-record-view.cassette.yaml | 364 +-- .../domain-record-weighted.cassette.yaml | 364 +-- .../testdata/domain-zone-basic.cassette.yaml | 118 +- 14 files changed, 3786 insertions(+), 3495 deletions(-) diff --git a/internal/services/domain/record.go b/internal/services/domain/record.go index c6925dbd4c..623a709c92 100644 --- a/internal/services/domain/record.go +++ b/internal/services/domain/record.go @@ -327,7 +327,6 @@ func resourceDomainRecordRead(ctx context.Context, d *schema.ResourceData, m int var err error - currentData := d.Get("data") // check if this is an inline import. Like: "terraform import scaleway_domain_record.www subdomain.domain.tld/11111111-1111-1111-1111-111111111111" if strings.Contains(d.Id(), "/") { tab := strings.Split(d.Id(), "/") @@ -410,16 +409,13 @@ func resourceDomainRecordRead(ctx context.Context, d *schema.ResourceData, m int // get the default first record projectID = dnsZones.DNSZones[0].ProjectID - _ = d.Set("root_zone", dnsZones.DNSZones[0].Subdomain == "") - - // retrieve data from record - currentData = flattenDomainData(record.Data, record.Type).(string) + _ = d.Set("root_zone", dnsZones.DNSZones[0].Subdomain == "") d.SetId(record.ID) _ = d.Set("dns_zone", dnsZone) _ = d.Set("name", record.Name) _ = d.Set("type", record.Type.String()) - _ = d.Set("data", currentData.(string)) + _ = d.Set("data", flattenDomainData(record.Data, record.Type).(string)) _ = d.Set("ttl", int(record.TTL)) _ = d.Set("priority", int(record.Priority)) _ = d.Set("geo_ip", flattenDomainGeoIP(record.GeoIPConfig)) diff --git a/internal/services/domain/record_test.go b/internal/services/domain/record_test.go index bdfe2084c2..4cc44d056a 100644 --- a/internal/services/domain/record_test.go +++ b/internal/services/domain/record_test.go @@ -141,7 +141,7 @@ func TestAccDomainRecord_Basic(t *testing.T) { dns_zone = %[1]q name = "record_mx" type = "MX" - data = "ASPMX.L.GOOGLE.COM." + data = "aspmx.l.google.com." ttl = 600 priority = 1 } @@ -151,7 +151,7 @@ func TestAccDomainRecord_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_domain_record.tf_MX", "dns_zone", testDNSZone), resource.TestCheckResourceAttr("scaleway_domain_record.tf_MX", "name", "record_mx"), resource.TestCheckResourceAttr("scaleway_domain_record.tf_MX", "type", "MX"), - resource.TestCheckResourceAttr("scaleway_domain_record.tf_MX", "data", "ASPMX.L.GOOGLE.COM."), + resource.TestCheckResourceAttr("scaleway_domain_record.tf_MX", "data", "aspmx.l.google.com."), resource.TestCheckResourceAttr("scaleway_domain_record.tf_MX", "ttl", "600"), resource.TestCheckResourceAttr("scaleway_domain_record.tf_MX", "priority", "1"), resource.TestCheckResourceAttr("scaleway_domain_record.tf_MX", "fqdn", "record_mx."+testDNSZone), @@ -194,7 +194,8 @@ func TestAccDomainRecord_Basic2(t *testing.T) { dns_zone = %[1]q name = "" type = "MX" - data = "10 feedback-smtp.eu-west-1.amazonses.com." + data = "feedback-smtp.eu-west-1.amazonses.com." + priority = 10 ttl = 300 } @@ -202,7 +203,7 @@ func TestAccDomainRecord_Basic2(t *testing.T) { dns_zone = %[1]q name = "" type = "MX" - data = "0 mail.scaleway.com." + data = "mail.scaleway.com." ttl = 300 } @@ -229,7 +230,7 @@ func TestAccDomainRecord_Basic2(t *testing.T) { resource.TestCheckResourceAttr("scaleway_domain_record.aws_mx", "dns_zone", testDNSZone), resource.TestCheckResourceAttr("scaleway_domain_record.aws_mx", "name", ""), resource.TestCheckResourceAttr("scaleway_domain_record.aws_mx", "type", "MX"), - resource.TestCheckResourceAttr("scaleway_domain_record.aws_mx", "data", "10 feedback-smtp.eu-west-1.amazonses.com."), + resource.TestCheckResourceAttr("scaleway_domain_record.aws_mx", "data", "feedback-smtp.eu-west-1.amazonses.com."), resource.TestCheckResourceAttr("scaleway_domain_record.aws_mx", "ttl", "300"), resource.TestCheckResourceAttr("scaleway_domain_record.aws_mx", "priority", "10"), acctest.CheckResourceAttrUUID("scaleway_domain_record.aws_mx", "id"), @@ -728,8 +729,8 @@ func TestAccDomainRecord_CNAME(t *testing.T) { name := "tf" recordType := "CNAME" - data := "xxx.scw.cloud" - dataUpdated := "yyy.scw.cloud" + data := "xxx.scw.cloud." + dataUpdated := "yyy.scw.cloud." ttl := 3600 ttlUpdated := 43200 priority := 0 diff --git a/internal/services/domain/testdata/data-source-domain-record-basic.cassette.yaml b/internal/services/domain/testdata/data-source-domain-record-basic.cassette.yaml index c53f5658fb..6c40014656 100644 --- a/internal/services/domain/testdata/data-source-domain-record-basic.cassette.yaml +++ b/internal/services/domain/testdata/data-source-domain-record-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 146 + content_length: 140 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "146" + - "140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d836cd1b-169e-46bf-b2f0-3ab953ab6e79 + - ca95ddbf-673f-4245-ae3a-bbe89f599e2c status: 200 OK code: 200 - duration: 859.786464ms + duration: 559.047375ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=www&order_by=name_asc&type=A method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50c98e36-0b29-4a6b-9bf2-5d0321ad0e46 + - 91f594cc-59f0-4f61-baf9-3822c0ea314f status: 200 OK code: 200 - duration: 58.181631ms + duration: 74.385292ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=www&order_by=name_asc&page=1&type=A method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fefc0186-3ca5-439c-85c8-c5b594c20272 + - 0828473c-78f9-47c4-9f34-e9f66ee3993e status: 200 OK code: 200 - duration: 55.280644ms + duration: 94.894542ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1f0b9c0-6625-4b5b-8c14-6ee4c801839c + - 5b9db56c-3c48-41c3-b8ab-52fbaeec16a8 status: 200 OK code: 200 - duration: 85.565695ms + duration: 65.883125ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe70818d-e1ff-48f9-8dcd-061f8aa514d8 + - 880ff04f-a480-4062-86c3-c695895d8707 status: 200 OK code: 200 - duration: 66.788894ms + duration: 76.079042ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=www&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77e3aa87-4c87-45ac-a023-ba7772ec21dd + - 31fec6b3-fc42-4fa1-a01f-828fd0fb52ea status: 200 OK code: 200 - duration: 67.339732ms + duration: 97.307666ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=www&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b9f756c-445e-4452-ab5a-45a550b57f9b + - 4265a5f0-ed20-4547-9900-d33f7a7d6ed3 status: 200 OK code: 200 - duration: 82.701308ms + duration: 98.840333ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93abd6e5-9c2b-4368-9b5b-82c5fcc66cf5 + - 07baa16a-bdf8-49c3-a6e3-b266b50dee2e status: 200 OK code: 200 - duration: 85.123167ms + duration: 126.774084ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e28958f-404c-47e0-ac8a-210ef96e4326 + - 35540ecc-ad07-46bc-a3cd-f2d08066c6b9 status: 200 OK code: 200 - duration: 70.227947ms + duration: 132.097583ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67b25663-13b6-426e-ba32-90c713f44f14 + - b9430f71-a59d-487f-b287-ff0b6b9db02a status: 200 OK code: 200 - duration: 74.889652ms + duration: 91.827458ms - id: 10 request: proto: HTTP/1.1 @@ -508,7 +508,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -517,20 +517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 426 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"5a212808-8855-472d-96bf-e2ac5ac9d734","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"e92d50f9-9c50-4d03-b80a-87a15a1afe6d","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"6b52dd3d-5fe6-450d-bcea-15481aa7c454","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b9a6fe39-2205-4eae-abf7-faaaf256a12e","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "447" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2298e918-c5ad-48ad-b5fa-368ff8c368aa + - e8a9b2a9-8d97-4acc-89c0-37f9668832a0 status: 200 OK code: 200 - duration: 88.531361ms + duration: 150.363291ms - id: 11 request: proto: HTTP/1.1 @@ -557,7 +557,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -566,20 +566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 426 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"5a212808-8855-472d-96bf-e2ac5ac9d734","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"e92d50f9-9c50-4d03-b80a-87a15a1afe6d","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"6b52dd3d-5fe6-450d-bcea-15481aa7c454","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b9a6fe39-2205-4eae-abf7-faaaf256a12e","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "447" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b96f9c-dfa2-461e-a9b1-18a0167b3bbb + - 540ced84-5b1f-449a-b6ec-59809b96af97 status: 200 OK code: 200 - duration: 62.761979ms + duration: 121.713292ms - id: 12 request: proto: HTTP/1.1 @@ -606,7 +606,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=www&order_by=name_asc&page=1&type=A method: GET response: @@ -615,20 +615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebc5163a-9cf0-4a89-8e1a-99d56a19a297 + - ece1b1e8-b11b-4a69-a132-8f2f4c1a62e1 status: 200 OK code: 200 - duration: 85.095279ms + duration: 145.928917ms - id: 13 request: proto: HTTP/1.1 @@ -655,8 +655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -664,20 +664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59528193-f960-4075-ab2b-ad9b8c550bda + - 981d0bb4-edfb-4df6-b2a6-d8db6bb6490a status: 200 OK code: 200 - duration: 87.655061ms + duration: 78.591833ms - id: 14 request: proto: HTTP/1.1 @@ -704,8 +704,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -713,20 +713,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 463a65bc-bfa7-4c9c-b072-c68563577950 + - a5ef0dc1-064d-4ba5-bb1c-077cafc22e93 status: 200 OK code: 200 - duration: 54.367654ms + duration: 226.409792ms - id: 15 request: proto: HTTP/1.1 @@ -753,7 +753,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -762,20 +762,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d96efc26-3bee-42d0-9eb7-c50d8f732f61 + - 86ecf66b-8c1f-475c-b7ab-ea07092471df status: 200 OK code: 200 - duration: 62.973493ms + duration: 81.082458ms - id: 16 request: proto: HTTP/1.1 @@ -802,7 +802,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -811,20 +811,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b14fd68-178b-4ee0-b706-344ce17ae136 + - 0b9d36ac-2452-445e-a2b5-bbf7b5848832 status: 200 OK code: 200 - duration: 62.637837ms + duration: 98.3465ms - id: 17 request: proto: HTTP/1.1 @@ -851,8 +851,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=www&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=www&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -860,20 +860,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0c8295b-3034-415f-a6f9-94ad7fd955b3 + - 2ff9e2c1-0609-4128-bcb7-35216e443f73 status: 200 OK code: 200 - duration: 59.99339ms + duration: 121.933709ms - id: 18 request: proto: HTTP/1.1 @@ -900,7 +900,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -909,20 +909,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 754ae2b2-d1e7-409c-aca4-51246183fe95 + - 6e1a88c6-5900-4e88-a376-052673d7a952 status: 200 OK code: 200 - duration: 75.623694ms + duration: 105.746792ms - id: 19 request: proto: HTTP/1.1 @@ -949,7 +949,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=www&order_by=name_asc&page=1&type=A method: GET response: @@ -958,20 +958,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16cac727-4709-4a3e-b648-45f7e38bea71 + - ae79ee3e-16c8-48a1-a855-49d309ea09f0 status: 200 OK code: 200 - duration: 75.591486ms + duration: 75.400458ms - id: 20 request: proto: HTTP/1.1 @@ -998,8 +998,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -1007,20 +1007,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96fd3e83-0221-45cf-9591-b6250fc756c9 + - b33632fc-cbe8-4748-94c0-427f1c097669 status: 200 OK code: 200 - duration: 76.300314ms + duration: 77.858375ms - id: 21 request: proto: HTTP/1.1 @@ -1047,8 +1047,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -1056,20 +1056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 156 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "370" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dd83159-923c-42f5-902e-51a79484faa9 + - 72558dfc-15f0-438a-bd88-fbd097c63c43 status: 200 OK code: 200 - duration: 61.606667ms + duration: 72.658833ms - id: 22 request: proto: HTTP/1.1 @@ -1096,8 +1096,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1105,20 +1105,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 358 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "163" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a13b4e3-7b73-4340-a714-de2c8bf8c85e + - 82d8ef59-592f-4c6b-943e-0e141077ec12 status: 200 OK code: 200 - duration: 69.995298ms + duration: 95.973709ms - id: 23 request: proto: HTTP/1.1 @@ -1145,7 +1145,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1154,20 +1154,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd6cd21c-5e19-489e-9f43-44a90fc20b1a + - 05696fb6-39e2-40cc-9a02-965b7df47168 status: 200 OK code: 200 - duration: 76.478507ms + duration: 95.46575ms - id: 24 request: proto: HTTP/1.1 @@ -1194,8 +1194,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=www&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1203,20 +1203,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 598ecbaa-83d3-4145-819d-f605c0501ef5 + - b187f5d3-3945-43d7-b404-c8cfcc9cdfd8 status: 200 OK code: 200 - duration: 73.955929ms + duration: 78.825792ms - id: 25 request: proto: HTTP/1.1 @@ -1243,8 +1243,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=www&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -1252,20 +1252,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5859f1c-1eff-44a6-a5a7-03593c714065 + - 5299db0b-1f36-4e1f-9bb4-bb2fb73db1f8 status: 200 OK code: 200 - duration: 73.981677ms + duration: 91.4935ms - id: 26 request: proto: HTTP/1.1 @@ -1292,8 +1292,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -1301,20 +1301,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 156 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "370" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8f9b1df-1044-4233-b46e-933bb7a22f8c + - e4924255-b6d7-458c-a0c3-5a8a3c655bca status: 200 OK code: 200 - duration: 73.630722ms + duration: 80.897209ms - id: 27 request: proto: HTTP/1.1 @@ -1341,8 +1341,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1350,20 +1350,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 358 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "163" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ca002f6-48ba-4937-86d8-cd56498ac8fc + - c635a80d-eb36-4c3e-a973-ef6d69380391 status: 200 OK code: 200 - duration: 78.604648ms + duration: 73.704125ms - id: 28 request: proto: HTTP/1.1 @@ -1390,7 +1390,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1399,20 +1399,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4ba8efe-4cdd-4d70-b53b-f35b03a6d416 + - 7dba1d7f-b150-4df4-88f3-1ceb56e1a82c status: 200 OK code: 200 - duration: 70.093043ms + duration: 73.148875ms - id: 29 request: proto: HTTP/1.1 @@ -1439,8 +1439,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=7a0db9af-f7b7-4f7c-9eab-ea39c16e8196&name=www&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?id=e687bb3b-37c4-45e2-ad6b-aec717ec07c4&name=www&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1448,20 +1448,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4","name":"www","priority":10,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8edb7b0-6804-4af4-8314-84c1115602c8 + - 3cb1af7c-e07e-47ae-aa4f-de4b306de36e status: 200 OK code: 200 - duration: 56.769926ms + duration: 77.731458ms - id: 30 request: proto: HTTP/1.1 @@ -1488,7 +1488,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1497,20 +1497,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db1f6440-5107-4eb1-862a-16b9713acc31 + - c4cc4e87-79f9-424b-bc9a-40083dfa8517 status: 200 OK code: 200 - duration: 72.007742ms + duration: 80.276667ms - id: 31 request: proto: HTTP/1.1 @@ -1533,13 +1533,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"7a0db9af-f7b7-4f7c-9eab-ea39c16e8196"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"e687bb3b-37c4-45e2-ad6b-aec717ec07c4"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records method: PATCH response: @@ -1559,9 +1559,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1569,10 +1569,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91214cb7-c98b-4de4-9b4c-3576e2b168dd + - 5462f88e-3aca-4457-a452-7aeffcad869f status: 200 OK code: 200 - duration: 89.042414ms + duration: 102.056625ms - id: 32 request: proto: HTTP/1.1 @@ -1588,7 +1588,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1597,20 +1597,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"5a212808-8855-472d-96bf-e2ac5ac9d734","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"e92d50f9-9c50-4d03-b80a-87a15a1afe6d","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"6b52dd3d-5fe6-450d-bcea-15481aa7c454","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b9a6fe39-2205-4eae-abf7-faaaf256a12e","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1618,10 +1618,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f1f01dd-9793-423f-99e2-6092cace0252 + - dcf5e35a-d03d-4708-be85-fbec72b01741 status: 200 OK code: 200 - duration: 55.834179ms + duration: 72.218958ms - id: 33 request: proto: HTTP/1.1 @@ -1637,7 +1637,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1646,20 +1646,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:05Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:39Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,10 +1667,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d6304d3-1c64-4bfb-8407-586a7dc4cfb4 + - 7b2db006-2e17-463e-abe2-e093d93a4eb6 status: 200 OK code: 200 - duration: 64.675751ms + duration: 68.266792ms - id: 34 request: proto: HTTP/1.1 @@ -1688,7 +1688,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records method: PATCH response: @@ -1697,20 +1697,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 307 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "320" + - "307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1718,10 +1718,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a883f83-ff70-4c35-8c9c-41ae4643f210 + - e99dfa0c-ee88-431e-a67e-37bd60891240 status: 200 OK code: 200 - duration: 381.89496ms + duration: 406.9865ms - id: 35 request: proto: HTTP/1.1 @@ -1737,7 +1737,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?name=tf_geo_ip&order_by=name_asc&type=A method: GET response: @@ -1746,20 +1746,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1767,10 +1767,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e502453-d595-401a-b730-3a42bd724220 + - b8965368-2836-4a0b-93c2-6ad086d77c80 status: 200 OK code: 200 - duration: 65.014624ms + duration: 78.428292ms - id: 36 request: proto: HTTP/1.1 @@ -1786,7 +1786,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?name=tf_geo_ip&order_by=name_asc&page=1&type=A method: GET response: @@ -1795,20 +1795,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1816,10 +1816,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f839ace-2c94-4e33-9114-007674f9e566 + - a5ed8227-5390-4b96-94e1-4b8e69791ad3 status: 200 OK code: 200 - duration: 52.471186ms + duration: 71.252458ms - id: 37 request: proto: HTTP/1.1 @@ -1835,8 +1835,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=52c9c4ce-4313-4b13-baab-5d4043cf1d11&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=950e0fa7-d3ac-4c20-8227-80a5d25d7c23&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -1844,20 +1844,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1865,10 +1865,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2e99490-58c8-4928-bf6e-2fc74c671260 + - 959acee8-33ad-41f6-9cb1-7e711d8e0bb1 status: 200 OK code: 200 - duration: 86.29883ms + duration: 86.79075ms - id: 38 request: proto: HTTP/1.1 @@ -1884,7 +1884,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1893,20 +1893,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 377 + content_length: 365 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:05Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:39Z"}],"total_count":1}' headers: Content-Length: - - "377" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1914,10 +1914,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6719ec54-9dd3-499a-bec0-c8204517c567 + - f29d4af9-d43b-4392-b00f-961855aeab69 status: 200 OK code: 200 - duration: 69.231392ms + duration: 76.153708ms - id: 39 request: proto: HTTP/1.1 @@ -1933,8 +1933,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=52c9c4ce-4313-4b13-baab-5d4043cf1d11&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=950e0fa7-d3ac-4c20-8227-80a5d25d7c23&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -1942,20 +1942,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1963,10 +1963,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c616786b-28d6-491e-be2f-56888671acc4 + - 5c960e20-977f-42e3-8bf6-874bf47e4890 status: 200 OK code: 200 - duration: 61.858491ms + duration: 83.053333ms - id: 40 request: proto: HTTP/1.1 @@ -1982,7 +1982,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1991,20 +1991,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 377 + content_length: 365 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:05Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:39Z"}],"total_count":1}' headers: Content-Length: - - "377" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2012,10 +2012,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74135682-a96f-4f02-a938-535f6c71f700 + - b7ec2f9e-da09-4a53-85a0-b31b141da249 status: 200 OK code: 200 - duration: 61.980019ms + duration: 89.834875ms - id: 41 request: proto: HTTP/1.1 @@ -2031,7 +2031,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -2040,20 +2040,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "369" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:10 GMT + - Wed, 12 Mar 2025 10:07:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2061,10 +2061,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8596974-4317-4165-bb3d-a7b190467eea + - 59015249-cf7b-4099-a4b1-6c66f6b00503 status: 200 OK code: 200 - duration: 71.814537ms + duration: 72.521334ms - id: 42 request: proto: HTTP/1.1 @@ -2080,7 +2080,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -2100,9 +2100,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:10 GMT + - Wed, 12 Mar 2025 10:07:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2110,10 +2110,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01df26b6-b8a1-4c8e-a289-a88177a992ee + - 271718a9-c456-469c-bfe0-711a8dfbfe22 status: 200 OK code: 200 - duration: 253.073713ms + duration: 256.039625ms - id: 43 request: proto: HTTP/1.1 @@ -2129,7 +2129,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -2138,20 +2138,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 621 + content_length: 593 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"f811b9e0-a011-4c3b-b59c-4ca86f756626","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"f768a421-41bf-4fc9-80cd-287633365d43","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"2324ea1f-4b21-4022-914a-8ffc174b50ac","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"4a7a7881-ae70-4283-ae24-b7d5330dd8b4","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "621" + - "593" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:10 GMT + - Wed, 12 Mar 2025 10:07:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2159,10 +2159,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddcc137c-75b2-4a42-a221-1f36812a40b7 + - cd985546-d3c3-4326-9ce1-fd80e9a9e330 status: 200 OK code: 200 - duration: 141.036794ms + duration: 74.587833ms - id: 44 request: proto: HTTP/1.1 @@ -2178,8 +2178,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=52c9c4ce-4313-4b13-baab-5d4043cf1d11&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=950e0fa7-d3ac-4c20-8227-80a5d25d7c23&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -2187,20 +2187,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2208,10 +2208,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8811f30a-b9e1-4f54-99b9-250df36d3559 + - 803da900-74be-479b-b7b5-ad2d44f6da02 status: 200 OK code: 200 - duration: 66.932713ms + duration: 81.878ms - id: 45 request: proto: HTTP/1.1 @@ -2227,7 +2227,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2236,20 +2236,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 364 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "376" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2257,10 +2257,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4643ea17-ea45-4f7f-9dc7-5cc69c4a9826 + - 24be80b2-acb8-43c1-99a3-538b14db7601 status: 200 OK code: 200 - duration: 61.645343ms + duration: 74.054917ms - id: 46 request: proto: HTTP/1.1 @@ -2276,8 +2276,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=52c9c4ce-4313-4b13-baab-5d4043cf1d11&name=tf_geo_ip&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=950e0fa7-d3ac-4c20-8227-80a5d25d7c23&name=tf_geo_ip&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -2285,20 +2285,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2306,10 +2306,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd021384-c3be-4c1a-bde1-31ab1263c78d + - 459cd201-995a-4035-b9ef-dba94716d9bf status: 200 OK code: 200 - duration: 76.251327ms + duration: 92.651667ms - id: 47 request: proto: HTTP/1.1 @@ -2325,7 +2325,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2334,20 +2334,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 364 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "376" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2355,10 +2355,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 354eda8d-8f3d-4cf8-80ed-51399d044c89 + - c34b534c-604a-4617-ba5e-9854e8f5ebf7 status: 200 OK code: 200 - duration: 65.937176ms + duration: 77.366084ms - id: 48 request: proto: HTTP/1.1 @@ -2374,8 +2374,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=52c9c4ce-4313-4b13-baab-5d4043cf1d11&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=950e0fa7-d3ac-4c20-8227-80a5d25d7c23&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -2383,20 +2383,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2404,10 +2404,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b237c5a-4a14-492b-ba98-459d064ffab7 + - 454989c0-d9ab-42cb-b24d-26adf3bcc616 status: 200 OK code: 200 - duration: 81.303452ms + duration: 79.140875ms - id: 49 request: proto: HTTP/1.1 @@ -2423,7 +2423,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2432,20 +2432,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 364 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "376" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2453,10 +2453,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54c2f9e3-1571-4b79-9198-947c6450bbe4 + - 040163be-3671-4dd6-8b2c-fc704add2e1c status: 200 OK code: 200 - duration: 84.979359ms + duration: 69.138666ms - id: 50 request: proto: HTTP/1.1 @@ -2472,8 +2472,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=52c9c4ce-4313-4b13-baab-5d4043cf1d11&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=950e0fa7-d3ac-4c20-8227-80a5d25d7c23&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -2481,20 +2481,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2502,10 +2502,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8b8ef5d-5e45-4949-8006-76d6a83655e8 + - e0287d30-2656-42ea-aa2f-f069a664f273 status: 200 OK code: 200 - duration: 74.755139ms + duration: 94.70675ms - id: 51 request: proto: HTTP/1.1 @@ -2521,7 +2521,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2530,20 +2530,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 364 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "376" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:12 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2551,10 +2551,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a8530c6-a7cf-40db-9c30-bf05ed30d119 + - ec35f6c4-710f-466d-a384-8cb040ed2888 status: 200 OK code: 200 - duration: 62.843934ms + duration: 72.10625ms - id: 52 request: proto: HTTP/1.1 @@ -2570,8 +2570,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=52c9c4ce-4313-4b13-baab-5d4043cf1d11&name=tf_geo_ip&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?id=950e0fa7-d3ac-4c20-8227-80a5d25d7c23&name=tf_geo_ip&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -2579,20 +2579,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","geo_ip_config":{"default":"1.2.3.4","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:12 GMT + - Wed, 12 Mar 2025 10:07:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2600,10 +2600,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb505c07-e672-440c-a22e-bc07a2444ab6 + - 74833fd2-f240-4367-9bc2-1aeb79905ed0 status: 200 OK code: 200 - duration: 80.04947ms + duration: 68.497167ms - id: 53 request: proto: HTTP/1.1 @@ -2619,7 +2619,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2628,20 +2628,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 364 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "376" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:12 GMT + - Wed, 12 Mar 2025 10:07:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2649,10 +2649,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de41655e-43fd-49ad-b89b-b0a453921acc + - 029f6b0a-808e-4d39-966b-592eb0a6aedb status: 200 OK code: 200 - duration: 70.272746ms + duration: 71.722917ms - id: 54 request: proto: HTTP/1.1 @@ -2664,13 +2664,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"52c9c4ce-4313-4b13-baab-5d4043cf1d11"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"950e0fa7-d3ac-4c20-8227-80a5d25d7c23"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records method: PATCH response: @@ -2690,9 +2690,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:12 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2700,10 +2700,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef4f54d0-638b-44bd-8cd5-8b1a6e89ba89 + - efcb3561-2447-4025-8c45-76c570952b93 status: 200 OK code: 200 - duration: 124.321667ms + duration: 108.094791ms - id: 55 request: proto: HTTP/1.1 @@ -2719,7 +2719,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -2728,20 +2728,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"f811b9e0-a011-4c3b-b59c-4ca86f756626","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"f768a421-41bf-4fc9-80cd-287633365d43","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"2324ea1f-4b21-4022-914a-8ffc174b50ac","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"4a7a7881-ae70-4283-ae24-b7d5330dd8b4","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2749,10 +2749,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46576c81-8330-4ad4-a38f-41f142071aca + - 46846f69-cbff-4f61-b67a-88bb6f1e9f4d status: 200 OK code: 200 - duration: 67.288811ms + duration: 87.427ms - id: 56 request: proto: HTTP/1.1 @@ -2768,7 +2768,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -2777,20 +2777,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 377 + content_length: 365 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:12Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:48Z"}],"total_count":1}' headers: Content-Length: - - "377" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2798,10 +2798,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 115500fd-da03-4445-bb48-6143bb93d4a4 + - 56065f31-bf0c-4b96-9616-67ff6c8ef46e status: 200 OK code: 200 - duration: 58.9318ms + duration: 72.875167ms - id: 57 request: proto: HTTP/1.1 @@ -2819,7 +2819,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records method: PATCH response: @@ -2828,20 +2828,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 321 + content_length: 309 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "321" + - "309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2849,10 +2849,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d58e708-631b-4214-847b-6c22c6278bdc + - 51a0cf34-66ea-46b1-9a68-bce06f6c3f55 status: 200 OK code: 200 - duration: 391.789787ms + duration: 399.116209ms - id: 58 request: proto: HTTP/1.1 @@ -2868,7 +2868,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?name=tf_http_service&order_by=name_asc&type=A method: GET response: @@ -2877,20 +2877,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2898,10 +2898,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c09817aa-2631-4eb7-943b-adffb1da1a6c + - 3484460e-3315-4c19-8139-70e8b2f25c99 status: 200 OK code: 200 - duration: 59.151898ms + duration: 65.852875ms - id: 59 request: proto: HTTP/1.1 @@ -2917,7 +2917,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?name=tf_http_service&order_by=name_asc&page=1&type=A method: GET response: @@ -2926,20 +2926,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2947,10 +2947,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dacadff-f1e8-497b-bb93-9eda4f428586 + - 1440f379-6a1f-4783-80c8-77c32552412c status: 200 OK code: 200 - duration: 79.974524ms + duration: 85.719583ms - id: 60 request: proto: HTTP/1.1 @@ -2966,8 +2966,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=42d82e78-c4ad-4213-b484-35dcf12c7c54&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=9c77cd66-26c2-428d-9a0c-0467c1632a9d&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -2975,20 +2975,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2996,10 +2996,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 291da62a-8132-4610-b49d-095ff4a4a9e0 + - c6c58eb4-e8f1-4530-8332-4c32c6167de9 status: 200 OK code: 200 - duration: 55.87068ms + duration: 79.700458ms - id: 61 request: proto: HTTP/1.1 @@ -3015,7 +3015,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -3024,20 +3024,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 383 + content_length: 371 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:13Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:07:48Z"}],"total_count":1}' headers: Content-Length: - - "383" + - "371" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3045,10 +3045,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf2155fc-c228-4264-9650-b785792c4cdf + - aa6b1390-ca76-4d53-83b6-264231e15d39 status: 200 OK code: 200 - duration: 58.800732ms + duration: 82.3305ms - id: 62 request: proto: HTTP/1.1 @@ -3064,8 +3064,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=42d82e78-c4ad-4213-b484-35dcf12c7c54&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=9c77cd66-26c2-428d-9a0c-0467c1632a9d&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -3073,20 +3073,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3094,10 +3094,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8bc31cb-23c9-42c2-8183-bd4f8e48cd66 + - c66e60e3-042c-47ee-81d1-9d94d39dd603 status: 200 OK code: 200 - duration: 60.38388ms + duration: 67.535125ms - id: 63 request: proto: HTTP/1.1 @@ -3113,7 +3113,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -3122,20 +3122,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 383 + content_length: 371 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:13Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:07:48Z"}],"total_count":1}' headers: Content-Length: - - "383" + - "371" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3143,10 +3143,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76ab9b7e-b0fa-4a9c-9fb7-b9c18f9f7399 + - 47a09c9b-619c-4b48-86a5-d7e2ad290d03 status: 200 OK code: 200 - duration: 88.383181ms + duration: 79.022459ms - id: 64 request: proto: HTTP/1.1 @@ -3162,7 +3162,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -3171,20 +3171,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 377 + content_length: 365 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:12Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:48Z"}],"total_count":1}' headers: Content-Length: - - "377" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:18 GMT + - Wed, 12 Mar 2025 10:07:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3192,10 +3192,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb02877e-cbfe-4ca9-a9fb-f514ea7d1da1 + - 9b7f218d-d784-4797-b725-b66d9ff9ed10 status: 200 OK code: 200 - duration: 71.598804ms + duration: 78.514625ms - id: 65 request: proto: HTTP/1.1 @@ -3211,7 +3211,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-geo-ip.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -3220,20 +3220,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 364 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2024-06-25T13:27:22Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-geo-ip","updated_at":"2025-03-12T10:07:56Z"}],"total_count":1}' headers: Content-Length: - - "376" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:23 GMT + - Wed, 12 Mar 2025 10:07:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3241,10 +3241,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d373807e-d347-46ef-adf7-561028a75970 + - 88d86eea-de62-4bea-9a1a-d37a655615ee status: 200 OK code: 200 - duration: 63.810358ms + duration: 729.814333ms - id: 66 request: proto: HTTP/1.1 @@ -3260,7 +3260,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-geo-ip.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -3280,9 +3280,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:23 GMT + - Wed, 12 Mar 2025 10:07:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3290,10 +3290,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0ddcbc3-f3ce-4f2c-8ae4-f6829ed03d25 + - 8c72d7c4-30cc-4d83-8b4a-cb73f6a3f90d status: 200 OK code: 200 - duration: 184.243806ms + duration: 134.471959ms - id: 67 request: proto: HTTP/1.1 @@ -3309,7 +3309,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -3318,20 +3318,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 622 + content_length: 595 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"93d5f4ad-c24e-415b-b3ce-797ecc55868b","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"9352488c-c4fc-4e13-93aa-b10355d639e5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"1d82cf4e-3670-4360-8df5-d4a57b80c096","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"47e55413-81d8-4887-b0ab-47c345a0e49b","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "622" + - "595" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:23 GMT + - Wed, 12 Mar 2025 10:07:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3339,10 +3339,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8af35e5-06f5-40eb-98d2-516abdf813c9 + - 957a61ef-01b5-406d-8d3a-a25862f34b3d status: 200 OK code: 200 - duration: 71.526537ms + duration: 73.34475ms - id: 68 request: proto: HTTP/1.1 @@ -3358,8 +3358,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=42d82e78-c4ad-4213-b484-35dcf12c7c54&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=9c77cd66-26c2-428d-9a0c-0467c1632a9d&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -3367,20 +3367,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:23 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3388,10 +3388,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8426e29-c2b5-492a-8299-60cf14014b62 + - 826f50c9-5a23-40c8-a58b-405b8ef4659e status: 200 OK code: 200 - duration: 57.796852ms + duration: 93.82225ms - id: 69 request: proto: HTTP/1.1 @@ -3407,7 +3407,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -3416,20 +3416,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 382 + content_length: 370 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:19Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:07:54Z"}],"total_count":1}' headers: Content-Length: - - "382" + - "370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:23 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3437,10 +3437,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e850b4b6-ecac-48af-8166-1ad597b014be + - 9caa12c7-d1c3-4172-89af-4de625357552 status: 200 OK code: 200 - duration: 54.474583ms + duration: 84.531833ms - id: 70 request: proto: HTTP/1.1 @@ -3456,8 +3456,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=42d82e78-c4ad-4213-b484-35dcf12c7c54&name=tf_http_service&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=9c77cd66-26c2-428d-9a0c-0467c1632a9d&name=tf_http_service&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -3465,20 +3465,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:24 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3486,10 +3486,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0456e34c-d726-4c44-a369-e0123adc5549 + - 9af0ea00-c960-4bc8-b00b-cbf7c88e6b8a status: 200 OK code: 200 - duration: 75.912745ms + duration: 76.949042ms - id: 71 request: proto: HTTP/1.1 @@ -3505,7 +3505,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -3514,20 +3514,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 382 + content_length: 370 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:19Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:07:54Z"}],"total_count":1}' headers: Content-Length: - - "382" + - "370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:24 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3535,10 +3535,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8408a65-13aa-4ad8-aac7-8a97ea160139 + - 4841b683-57f6-40a9-a173-3bb285640d4e status: 200 OK code: 200 - duration: 63.888246ms + duration: 71.864958ms - id: 72 request: proto: HTTP/1.1 @@ -3554,8 +3554,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=42d82e78-c4ad-4213-b484-35dcf12c7c54&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=9c77cd66-26c2-428d-9a0c-0467c1632a9d&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -3563,20 +3563,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:24 GMT + - Wed, 12 Mar 2025 10:08:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3584,10 +3584,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa5a9882-30e8-49f8-8757-5cbe439bfc90 + - 653961c0-27ba-45bb-9910-a15907047234 status: 200 OK code: 200 - duration: 79.304835ms + duration: 330.622917ms - id: 73 request: proto: HTTP/1.1 @@ -3603,7 +3603,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -3612,20 +3612,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 382 + content_length: 370 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:19Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:07:54Z"}],"total_count":1}' headers: Content-Length: - - "382" + - "370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:24 GMT + - Wed, 12 Mar 2025 10:08:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3633,10 +3633,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4296b0c-c85f-4622-8380-c660829759db + - 4471f82d-9d5b-47d0-b700-2eb134628f4f status: 200 OK code: 200 - duration: 68.698766ms + duration: 69.212833ms - id: 74 request: proto: HTTP/1.1 @@ -3652,8 +3652,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=42d82e78-c4ad-4213-b484-35dcf12c7c54&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=9c77cd66-26c2-428d-9a0c-0467c1632a9d&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -3661,20 +3661,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:24 GMT + - Wed, 12 Mar 2025 10:08:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3682,10 +3682,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd72b871-0ff5-41c7-86f9-f2eade4413c2 + - 801205d4-ba23-49c0-9e33-240fb16ae7be status: 200 OK code: 200 - duration: 66.065444ms + duration: 80.506167ms - id: 75 request: proto: HTTP/1.1 @@ -3701,7 +3701,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -3710,20 +3710,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 382 + content_length: 370 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:19Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:07:54Z"}],"total_count":1}' headers: Content-Length: - - "382" + - "370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:24 GMT + - Wed, 12 Mar 2025 10:08:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3731,10 +3731,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6ceea53-39a8-4bcf-9c88-223d61fb0079 + - 60035c14-1273-4170-a742-d34f1f677fae status: 200 OK code: 200 - duration: 52.441774ms + duration: 87.002417ms - id: 76 request: proto: HTTP/1.1 @@ -3750,8 +3750,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=42d82e78-c4ad-4213-b484-35dcf12c7c54&name=tf_http_service&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?id=9c77cd66-26c2-428d-9a0c-0467c1632a9d&name=tf_http_service&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -3759,20 +3759,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 325 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "338" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:24 GMT + - Wed, 12 Mar 2025 10:08:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3780,10 +3780,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 550f4c25-68b0-4bf8-b699-09ae98b13ac4 + - 8c7e10be-50e5-49cc-ac8f-32b0fd68301b status: 200 OK code: 200 - duration: 58.594865ms + duration: 77.418125ms - id: 77 request: proto: HTTP/1.1 @@ -3799,7 +3799,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -3808,20 +3808,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 382 + content_length: 370 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:19Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:07:54Z"}],"total_count":1}' headers: Content-Length: - - "382" + - "370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:24 GMT + - Wed, 12 Mar 2025 10:08:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3829,10 +3829,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffb0f525-6154-495b-9886-5b7432c21604 + - 8d5276fd-05fe-4acf-b372-df4f7a1db64d status: 200 OK code: 200 - duration: 51.390931ms + duration: 69.569792ms - id: 78 request: proto: HTTP/1.1 @@ -3844,13 +3844,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"42d82e78-c4ad-4213-b484-35dcf12c7c54"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"9c77cd66-26c2-428d-9a0c-0467c1632a9d"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records method: PATCH response: @@ -3870,9 +3870,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:25 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3880,10 +3880,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5097a2db-6059-4af9-b449-e32bf57df453 + - e22d3843-c73b-4a40-a6f0-86bdc3f01c41 status: 200 OK code: 200 - duration: 139.186028ms + duration: 103.257458ms - id: 79 request: proto: HTTP/1.1 @@ -3899,7 +3899,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -3908,20 +3908,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"93d5f4ad-c24e-415b-b3ce-797ecc55868b","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"9352488c-c4fc-4e13-93aa-b10355d639e5","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"1d82cf4e-3670-4360-8df5-d4a57b80c096","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"47e55413-81d8-4887-b0ab-47c345a0e49b","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:25 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3929,10 +3929,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0425bd90-30f5-462f-9311-24f7a4918e77 + - 15e3d797-41f8-4f4e-9af3-82776fa5a9aa status: 200 OK code: 200 - duration: 71.742402ms + duration: 68.237084ms - id: 80 request: proto: HTTP/1.1 @@ -3948,7 +3948,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -3957,20 +3957,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 383 + content_length: 371 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:25Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "383" + - "371" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:25 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3978,10 +3978,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 803b3c8a-af2e-4c9e-a1ff-aafe820b42ff + - 2a298860-a7c1-41f4-9654-53ab570bab9b status: 200 OK code: 200 - duration: 63.049504ms + duration: 80.72475ms - id: 81 request: proto: HTTP/1.1 @@ -3999,7 +3999,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records method: PATCH response: @@ -4008,20 +4008,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 265 + content_length: 255 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}]}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}]}' headers: Content-Length: - - "265" + - "255" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:25 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4029,10 +4029,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3a515d3-45eb-44fe-ae44-2de2a1ed5b35 + - 876ea8c5-6e13-4047-9faf-c35800efb6ce status: 200 OK code: 200 - duration: 560.179525ms + duration: 580.86125ms - id: 82 request: proto: HTTP/1.1 @@ -4048,7 +4048,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?name=tf_view&order_by=name_asc&type=A method: GET response: @@ -4057,20 +4057,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:25 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4078,10 +4078,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1be69728-3d95-48e7-bcf0-349224569d30 + - 7d5b94a1-0a90-480b-a025-e47dfd5e4159 status: 200 OK code: 200 - duration: 55.321319ms + duration: 101.083208ms - id: 83 request: proto: HTTP/1.1 @@ -4097,7 +4097,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?name=tf_view&order_by=name_asc&page=1&type=A method: GET response: @@ -4106,20 +4106,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:25 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4127,10 +4127,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e95fe05b-e1c6-4c6c-a740-266af050510d + - 6f26b06a-6097-420f-8fd1-477f90908a27 status: 200 OK code: 200 - duration: 58.098411ms + duration: 84.561334ms - id: 84 request: proto: HTTP/1.1 @@ -4146,8 +4146,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=765e58ca-c5d0-402f-a030-3e152f0635d5&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=56578db2-9e98-4d47-a873-b39ae0377177&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -4155,20 +4155,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:26 GMT + - Wed, 12 Mar 2025 10:08:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4176,10 +4176,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f311240-a09e-442d-81da-49622d7707fd + - cdc0926a-d53d-4a5c-a883-82ac6cf75e9f status: 200 OK code: 200 - duration: 63.076374ms + duration: 61.506833ms - id: 85 request: proto: HTTP/1.1 @@ -4195,7 +4195,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -4204,20 +4204,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 363 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:25Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:26 GMT + - Wed, 12 Mar 2025 10:08:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4225,10 +4225,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b88d03c-7b19-44e5-aae0-6bfce7f93bc8 + - 112e8f5d-8764-49ea-85f0-12a0b35c5381 status: 200 OK code: 200 - duration: 71.757062ms + duration: 77.561125ms - id: 86 request: proto: HTTP/1.1 @@ -4244,8 +4244,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=765e58ca-c5d0-402f-a030-3e152f0635d5&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=56578db2-9e98-4d47-a873-b39ae0377177&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -4253,20 +4253,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:26 GMT + - Wed, 12 Mar 2025 10:08:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4274,10 +4274,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f591b7b7-9b6a-49fd-a4ea-107fa7442aa1 + - f3d86aa9-e8b5-4f90-8d57-41489588551d status: 200 OK code: 200 - duration: 72.114245ms + duration: 103.379459ms - id: 87 request: proto: HTTP/1.1 @@ -4293,7 +4293,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -4302,20 +4302,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 363 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:25Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:26 GMT + - Wed, 12 Mar 2025 10:08:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4323,10 +4323,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b1be9ed-b7a5-4e04-ba26-adc22dff56b4 + - 629df337-c8ad-422d-9fef-02d7b5b292fb status: 200 OK code: 200 - duration: 54.392586ms + duration: 77.798459ms - id: 88 request: proto: HTTP/1.1 @@ -4342,7 +4342,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-http-service.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -4351,20 +4351,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 382 + content_length: 370 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2024-06-25T13:27:29Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-http-service","updated_at":"2025-03-12T10:08:05Z"}],"total_count":1}' headers: Content-Length: - - "382" + - "370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:30 GMT + - Wed, 12 Mar 2025 10:08:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4372,10 +4372,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a26c697-aedd-4c3b-aa3e-4caf08261b6b + - 7935106d-c1de-4ae0-a181-8f38666832cf status: 200 OK code: 200 - duration: 57.505959ms + duration: 64.97925ms - id: 89 request: proto: HTTP/1.1 @@ -4391,7 +4391,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-http-service.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -4411,9 +4411,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:30 GMT + - Wed, 12 Mar 2025 10:08:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4421,10 +4421,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d30d798a-74f4-4e0d-89d5-cdbe25e34071 + - 136321f1-5e3d-4e5c-bd47-6697f4cf2a76 status: 200 OK code: 200 - duration: 194.222941ms + duration: 144.787958ms - id: 90 request: proto: HTTP/1.1 @@ -4440,7 +4440,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -4449,20 +4449,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 566 + content_length: 541 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"9c41336e-97b9-4df7-b2af-f1f47ddd8758","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"65392222-8429-4e27-85a8-dd886615be21","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"83e8290b-0c1b-42d8-af45-1fc4dbc81bd5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"bbc82053-7af9-426d-9a74-93f82c205edf","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":3}' headers: Content-Length: - - "566" + - "541" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4470,10 +4470,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6adbc959-1298-49cd-941f-0cbd30707450 + - f3631d8b-1f58-410c-bbd4-12a572e590e8 status: 200 OK code: 200 - duration: 57.717446ms + duration: 81.519208ms - id: 91 request: proto: HTTP/1.1 @@ -4489,8 +4489,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=765e58ca-c5d0-402f-a030-3e152f0635d5&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=56578db2-9e98-4d47-a873-b39ae0377177&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -4498,20 +4498,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4519,10 +4519,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3ba46f9-8624-4929-8e19-2250ea0761ee + - 5810b7e2-2d06-42a8-810f-bd7bcbdc941b status: 200 OK code: 200 - duration: 61.343527ms + duration: 219.460333ms - id: 92 request: proto: HTTP/1.1 @@ -4538,7 +4538,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -4547,20 +4547,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 363 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:29Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "374" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4568,10 +4568,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f765cf03-c8ed-4752-ba58-be7c757c5e41 + - 554aa3b3-2428-43a4-9a52-7c9d0c090cf1 status: 200 OK code: 200 - duration: 70.092128ms + duration: 88.371708ms - id: 93 request: proto: HTTP/1.1 @@ -4587,8 +4587,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=765e58ca-c5d0-402f-a030-3e152f0635d5&name=tf_view&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=56578db2-9e98-4d47-a873-b39ae0377177&name=tf_view&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -4596,20 +4596,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4617,10 +4617,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4f9b5b6-62d0-4da0-b4e5-7d3771ec697b + - 8c9f8107-6127-4be9-b15b-1269032fc20a status: 200 OK code: 200 - duration: 66.329623ms + duration: 76.347333ms - id: 94 request: proto: HTTP/1.1 @@ -4636,7 +4636,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -4645,20 +4645,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 363 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:29Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "374" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4666,10 +4666,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f53d13a6-0f7a-4f02-9224-4f243efb6dcd + - 8ccdc25f-7357-4c19-95e7-e147716db693 status: 200 OK code: 200 - duration: 61.436955ms + duration: 72.492791ms - id: 95 request: proto: HTTP/1.1 @@ -4685,8 +4685,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=765e58ca-c5d0-402f-a030-3e152f0635d5&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=56578db2-9e98-4d47-a873-b39ae0377177&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -4694,20 +4694,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4715,10 +4715,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 437cdf14-97d8-403c-a0b5-4d07e049e9db + - 0aa59c05-a216-4641-b114-be1995da5c72 status: 200 OK code: 200 - duration: 64.017942ms + duration: 70.258083ms - id: 96 request: proto: HTTP/1.1 @@ -4734,7 +4734,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -4743,20 +4743,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 363 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:29Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "374" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4764,10 +4764,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2386689-0dba-4dea-9278-2b442799e6ef + - 156702b6-1d36-439c-b862-e0b3753cc738 status: 200 OK code: 200 - duration: 62.399403ms + duration: 78.116667ms - id: 97 request: proto: HTTP/1.1 @@ -4783,8 +4783,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=765e58ca-c5d0-402f-a030-3e152f0635d5&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=56578db2-9e98-4d47-a873-b39ae0377177&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -4792,20 +4792,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4813,10 +4813,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e59e8275-ed95-4983-a104-70ff4506b686 + - 5a83e4ae-a997-4772-bc8d-2988701c95f8 status: 200 OK code: 200 - duration: 69.243732ms + duration: 83.799666ms - id: 98 request: proto: HTTP/1.1 @@ -4832,7 +4832,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -4841,20 +4841,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 363 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:29Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "374" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:31 GMT + - Wed, 12 Mar 2025 10:08:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4862,10 +4862,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 263fb0aa-6a70-4faa-b8fb-8f52d068dc4c + - e34c8479-0d0e-40dc-b256-c358c705087b status: 200 OK code: 200 - duration: 57.661454ms + duration: 82.922667ms - id: 99 request: proto: HTTP/1.1 @@ -4881,8 +4881,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=765e58ca-c5d0-402f-a030-3e152f0635d5&name=tf_view&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?id=56578db2-9e98-4d47-a873-b39ae0377177&name=tf_view&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -4890,20 +4890,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 271 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"765e58ca-c5d0-402f-a030-3e152f0635d5","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"56578db2-9e98-4d47-a873-b39ae0377177","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "282" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:32 GMT + - Wed, 12 Mar 2025 10:08:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4911,10 +4911,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e647191a-ff4f-4944-94fe-6d4dfc724753 + - 58feb565-e616-4d0e-a7d7-25a329717aa4 status: 200 OK code: 200 - duration: 61.171542ms + duration: 75.232166ms - id: 100 request: proto: HTTP/1.1 @@ -4930,7 +4930,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -4939,20 +4939,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 363 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:29Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "374" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:32 GMT + - Wed, 12 Mar 2025 10:08:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4960,10 +4960,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16a5ecd7-ca8f-4b7c-b5dd-38418f9b34ba + - 95ca3fc9-9362-4576-8a0e-b809dfd508af status: 200 OK code: 200 - duration: 49.222726ms + duration: 78.020292ms - id: 101 request: proto: HTTP/1.1 @@ -4975,13 +4975,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"765e58ca-c5d0-402f-a030-3e152f0635d5"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"56578db2-9e98-4d47-a873-b39ae0377177"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records method: PATCH response: @@ -5001,9 +5001,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:32 GMT + - Wed, 12 Mar 2025 10:08:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5011,10 +5011,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fedb6bb1-b04a-4541-80b1-1482259d2198 + - 84b0a86d-880f-4075-9978-cf0bb08218eb status: 200 OK code: 200 - duration: 145.349437ms + duration: 205.5315ms - id: 102 request: proto: HTTP/1.1 @@ -5030,7 +5030,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -5039,20 +5039,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"9c41336e-97b9-4df7-b2af-f1f47ddd8758","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"65392222-8429-4e27-85a8-dd886615be21","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"83e8290b-0c1b-42d8-af45-1fc4dbc81bd5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"bbc82053-7af9-426d-9a74-93f82c205edf","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:32 GMT + - Wed, 12 Mar 2025 10:08:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5060,10 +5060,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a71126a-8e0b-445e-af07-b171fa93fb98 + - f9ba6202-4df2-41a0-981d-c25470aea886 status: 200 OK code: 200 - duration: 73.774566ms + duration: 61.882ms - id: 103 request: proto: HTTP/1.1 @@ -5079,7 +5079,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -5088,20 +5088,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 363 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:32Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:12Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:32 GMT + - Wed, 12 Mar 2025 10:08:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5109,10 +5109,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1431ee46-b929-4025-8513-7e9224fcf62e + - 0d3bea41-bdee-4f67-b581-516539783896 status: 200 OK code: 200 - duration: 60.831006ms + duration: 86.534834ms - id: 104 request: proto: HTTP/1.1 @@ -5130,7 +5130,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records method: PATCH response: @@ -5139,20 +5139,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 250 + content_length: 240 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}]}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}]}' headers: Content-Length: - - "250" + - "240" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:33 GMT + - Wed, 12 Mar 2025 10:08:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5160,10 +5160,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ec02884-99c8-4074-930d-35e56409b5fe + - 388f876f-d15b-4e10-aa48-8275da936423 status: 200 OK code: 200 - duration: 478.485152ms + duration: 458.396625ms - id: 105 request: proto: HTTP/1.1 @@ -5179,7 +5179,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?name=tf_weighted&order_by=name_asc&type=A method: GET response: @@ -5188,20 +5188,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 256 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "267" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:33 GMT + - Wed, 12 Mar 2025 10:08:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5209,10 +5209,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b3bd025-5f2a-48a2-9701-3a1d47672e28 + - 5404e967-77bb-488c-8914-ce4f35415785 status: 200 OK code: 200 - duration: 61.786812ms + duration: 81.45425ms - id: 106 request: proto: HTTP/1.1 @@ -5228,7 +5228,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?name=tf_weighted&order_by=name_asc&page=1&type=A method: GET response: @@ -5237,20 +5237,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 256 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "267" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:33 GMT + - Wed, 12 Mar 2025 10:08:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5258,10 +5258,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c226f367-e452-467d-b4b0-43b2955c78e0 + - 6bf3ff89-49f9-4660-93e7-0b008476d77e status: 200 OK code: 200 - duration: 92.108219ms + duration: 90.236625ms - id: 107 request: proto: HTTP/1.1 @@ -5277,8 +5277,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=68e7be82-8f37-413e-9799-94081012f37f&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=4767e26b-dc12-4770-8cb0-f0d598834dd0&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -5286,20 +5286,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 256 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "267" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:33 GMT + - Wed, 12 Mar 2025 10:08:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5307,10 +5307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 070b1064-5431-4a64-9bfb-50d0c0006dd0 + - f95c65a3-9b5a-4c7a-9b16-f78d02d91a46 status: 200 OK code: 200 - duration: 76.920192ms + duration: 72.592875ms - id: 108 request: proto: HTTP/1.1 @@ -5326,7 +5326,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -5335,20 +5335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 379 + content_length: 367 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-weighted","updated_at":"2024-06-25T13:27:33Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-weighted","updated_at":"2025-03-12T10:08:12Z"}],"total_count":1}' headers: Content-Length: - - "379" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:33 GMT + - Wed, 12 Mar 2025 10:08:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5356,10 +5356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a1aa492-fdac-4cf1-8bb0-ceb59811948f + - 2d634471-6625-41eb-934e-55758b95a39c status: 200 OK code: 200 - duration: 77.611626ms + duration: 148.798208ms - id: 109 request: proto: HTTP/1.1 @@ -5375,8 +5375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=68e7be82-8f37-413e-9799-94081012f37f&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=4767e26b-dc12-4770-8cb0-f0d598834dd0&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -5384,20 +5384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 256 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "267" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:33 GMT + - Wed, 12 Mar 2025 10:08:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5405,10 +5405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7daf4e00-d2d9-496d-b8b1-cc68794ab9cb + - f54e5927-7039-42a4-bebf-855270cb619d status: 200 OK code: 200 - duration: 70.720316ms + duration: 846.293084ms - id: 110 request: proto: HTTP/1.1 @@ -5424,7 +5424,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -5433,20 +5433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 379 + content_length: 367 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-weighted","updated_at":"2024-06-25T13:27:33Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-weighted","updated_at":"2025-03-12T10:08:12Z"}],"total_count":1}' headers: Content-Length: - - "379" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:33 GMT + - Wed, 12 Mar 2025 10:08:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5454,10 +5454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e19e96b-310a-4c93-830f-70cda5def685 + - 538d7fc2-6a7b-4c36-8846-bbd6078c7f09 status: 200 OK code: 200 - duration: 75.781733ms + duration: 79.84475ms - id: 111 request: proto: HTTP/1.1 @@ -5473,7 +5473,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -5482,20 +5482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 362 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:32Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-view","updated_at":"2025-03-12T10:08:14Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:38 GMT + - Wed, 12 Mar 2025 10:08:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5503,10 +5503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e746804e-e9b3-4c84-9f0d-cb581accdb2d + - 7683cc98-afc3-438f-873e-1e9f64ac953f status: 200 OK code: 200 - duration: 80.453136ms + duration: 77.411542ms - id: 112 request: proto: HTTP/1.1 @@ -5522,56 +5522,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-view.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-view","updated_at":"2024-06-25T13:27:41Z"}],"total_count":1}' - headers: - Content-Length: - - "374" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 25 Jun 2024 13:27:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5ad9de37-ea36-4f26-9c3a-3c10ca96a0fd - status: 200 OK - code: 200 - duration: 67.843378ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-view.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -5591,9 +5542,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:43 GMT + - Wed, 12 Mar 2025 10:08:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5601,11 +5552,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 888d54f1-0fd0-46b2-8806-fa259b9a877d + - efae6928-d7ba-42b6-a30e-a4ff8279fe54 status: 200 OK code: 200 - duration: 179.524112ms - - id: 114 + duration: 119.131334ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5620,7 +5571,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -5629,20 +5580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 551 + content_length: 526 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"c1cb85bd-1dc5-4a25-9c50-ec4057895fc2","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"950e6807-5bed-42d7-8d02-dd02d56030d9","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"e81a6559-b4a8-49de-9309-708731f5a8d2","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b4383daa-75e9-4ede-b448-0e450064ee9f","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":3}' headers: Content-Length: - - "551" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:44 GMT + - Wed, 12 Mar 2025 10:08:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5650,11 +5601,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 055d10bf-3dee-4ab1-b6ab-31cfdd1f4731 + - f4448200-3ca2-488c-a9a8-09b1b8fcba39 status: 200 OK code: 200 - duration: 666.08001ms - - id: 115 + duration: 89.966125ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5669,8 +5620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=68e7be82-8f37-413e-9799-94081012f37f&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=4767e26b-dc12-4770-8cb0-f0d598834dd0&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -5678,20 +5629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 256 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "267" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:44 GMT + - Wed, 12 Mar 2025 10:08:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5699,11 +5650,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12e8742e-2139-4f36-9b29-f008ca264606 + - 9089664a-af91-40ce-bd75-f92ace8eb19e status: 200 OK code: 200 - duration: 62.535628ms - - id: 116 + duration: 78.166875ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5718,7 +5669,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -5727,20 +5678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 378 + content_length: 366 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2024-06-25T13:27:39Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2025-03-12T10:08:14Z"}],"total_count":1}' headers: Content-Length: - - "378" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:44 GMT + - Wed, 12 Mar 2025 10:08:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5748,11 +5699,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d2637ad-8189-413f-9a4e-8552c51a29f4 + - 2ac289c0-d1cf-45ac-bbba-c928256aa752 status: 200 OK code: 200 - duration: 72.206541ms - - id: 117 + duration: 73.722583ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5767,8 +5718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=68e7be82-8f37-413e-9799-94081012f37f&name=tf_weighted&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=4767e26b-dc12-4770-8cb0-f0d598834dd0&name=tf_weighted&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -5776,20 +5727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 256 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "267" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:44 GMT + - Wed, 12 Mar 2025 10:08:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5797,11 +5748,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24169aa6-5418-4b32-872e-1455c78f1fae + - f52f4ed2-0d65-4aad-ad9d-004c88205444 status: 200 OK code: 200 - duration: 61.134154ms - - id: 118 + duration: 63.197875ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5816,7 +5767,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -5825,20 +5776,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 378 + content_length: 366 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2024-06-25T13:27:39Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2025-03-12T10:08:14Z"}],"total_count":1}' headers: Content-Length: - - "378" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:44 GMT + - Wed, 12 Mar 2025 10:08:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5846,11 +5797,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ed44664-c96e-415d-823f-e2a6bef37ff3 + - 316a86f1-6153-40ca-b44c-e4418a494afd status: 200 OK code: 200 - duration: 61.505763ms - - id: 119 + duration: 76.223334ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5865,8 +5816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=68e7be82-8f37-413e-9799-94081012f37f&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=4767e26b-dc12-4770-8cb0-f0d598834dd0&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -5874,20 +5825,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 256 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "267" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:44 GMT + - Wed, 12 Mar 2025 10:08:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5895,11 +5846,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0cb7b71-ee58-4b34-af5b-4fcf93c846cb + - ebef8fd7-e3ae-4366-ae80-4c62b1e48ac5 status: 200 OK code: 200 - duration: 75.071309ms - - id: 120 + duration: 342.956416ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5914,7 +5865,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -5923,20 +5874,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 378 + content_length: 366 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2024-06-25T13:27:39Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2025-03-12T10:08:14Z"}],"total_count":1}' headers: Content-Length: - - "378" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:44 GMT + - Wed, 12 Mar 2025 10:08:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5944,11 +5895,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b48e9b44-891c-452a-89cc-dc59a916e807 + - 4861a3e1-6e66-49f9-b73a-bd0176371490 status: 200 OK code: 200 - duration: 61.031285ms - - id: 121 + duration: 77.221833ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -5963,8 +5914,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=68e7be82-8f37-413e-9799-94081012f37f&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?id=4767e26b-dc12-4770-8cb0-f0d598834dd0&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -5972,20 +5923,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 256 uncompressed: false - body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"68e7be82-8f37-413e-9799-94081012f37f","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1.2.3.4","id":"4767e26b-dc12-4770-8cb0-f0d598834dd0","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "267" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:45 GMT + - Wed, 12 Mar 2025 10:08:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5993,11 +5944,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d01f6da-c112-462f-adca-a96d4f98d756 + - ef191509-6602-46a3-8bbe-3623a5205ef7 status: 200 OK code: 200 - duration: 77.682017ms - - id: 122 + duration: 84.972ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -6012,7 +5963,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-data-source-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -6021,20 +5972,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 378 + content_length: 366 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2024-06-25T13:27:39Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2025-03-12T10:08:14Z"}],"total_count":1}' headers: Content-Length: - - "378" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:45 GMT + - Wed, 12 Mar 2025 10:08:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6042,11 +5993,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af6a10ac-e23a-42ba-ad48-7cc41e886be7 + - 8d1b831d-773f-4fb5-9471-7ac041d4b21d status: 200 OK code: 200 - duration: 74.728129ms - - id: 123 + duration: 69.367958ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6057,13 +6008,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"68e7be82-8f37-413e-9799-94081012f37f"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"4767e26b-dc12-4770-8cb0-f0d598834dd0"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records method: PATCH response: @@ -6083,9 +6034,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:45 GMT + - Wed, 12 Mar 2025 10:08:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6093,11 +6044,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba0463c1-18fe-4bf4-abbb-697ba18d1451 + - 6552ecf5-3ed7-47d0-b57b-2cb42df694c3 status: 200 OK code: 200 - duration: 157.039556ms - - id: 124 + duration: 196.578ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6112,7 +6063,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -6121,20 +6072,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"c1cb85bd-1dc5-4a25-9c50-ec4057895fc2","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"950e6807-5bed-42d7-8d02-dd02d56030d9","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"e81a6559-b4a8-49de-9309-708731f5a8d2","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b4383daa-75e9-4ede-b448-0e450064ee9f","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:45 GMT + - Wed, 12 Mar 2025 10:08:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6142,11 +6093,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0925594e-4568-4b3f-b6e1-13f132b7b2e5 + - 426c8442-6ea5-4251-9167-4db7cb78827c status: 200 OK code: 200 - duration: 76.828026ms - - id: 125 + duration: 82.465708ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6161,7 +6112,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-weighted.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -6170,20 +6121,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 379 + content_length: 367 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-weighted","updated_at":"2024-06-25T13:27:45Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-data-source-weighted","updated_at":"2025-03-12T10:08:20Z"}],"total_count":1}' headers: Content-Length: - - "379" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:45 GMT + - Wed, 12 Mar 2025 10:08:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6191,11 +6142,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 221e4978-3e4a-43ae-8b87-7290db9d591d + - 2975eda1-456f-4983-a39b-1aba165d75c7 status: 200 OK code: 200 - duration: 78.228277ms - - id: 126 + duration: 74.914667ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6210,7 +6161,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-data-source-weighted.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -6219,20 +6170,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 378 + content_length: 366 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2024-06-25T13:27:49Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-data-source-weighted","updated_at":"2025-03-12T10:08:25Z"}],"total_count":1}' headers: Content-Length: - - "378" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:50 GMT + - Wed, 12 Mar 2025 10:08:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6240,11 +6191,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68bb8d26-8741-4b6b-a07b-9d923c676bef + - d91dba54-e0dd-412e-943b-0c9145783da1 status: 200 OK code: 200 - duration: 119.500942ms - - id: 127 + duration: 75.952917ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6259,7 +6210,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -6279,9 +6230,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:51 GMT + - Wed, 12 Mar 2025 10:08:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6289,11 +6240,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6982253-ef7f-47e5-8c4a-3bcfc2826d19 + - 4a66d20b-fef4-44c0-8bab-cc5970a886a0 status: 200 OK code: 200 - duration: 176.1808ms - - id: 128 + duration: 176.183666ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6308,7 +6259,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-data-source-weighted.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -6328,9 +6279,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:51 GMT + - Wed, 12 Mar 2025 10:08:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6338,7 +6289,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9489c46-3c5f-41ad-8464-b431e6f37100 + - 5010004d-603b-4941-8da0-0e1f89280e16 status: 403 Forbidden code: 403 - duration: 71.309149ms + duration: 78.567834ms diff --git a/internal/services/domain/testdata/data-source-domain-zone-basic.cassette.yaml b/internal/services/domain/testdata/data-source-domain-zone-basic.cassette.yaml index 8ed9647ceb..7886316a95 100644 --- a/internal/services/domain/testdata/data-source-domain-zone-basic.cassette.yaml +++ b/internal/services/domain/testdata/data-source-domain-zone-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 33 + content_length: 32 uncompressed: false body: '{"dns_zones":[],"total_count":0}' headers: Content-Length: - - "33" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:00 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c801347-0c12-4377-95ee-7af3cf4c8339 + - b46bc1aa-7950-4d9e-a9bf-403e991bb431 status: 200 OK code: 200 - duration: 119.535125ms + duration: 367.966167ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones method: POST response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 330 + content_length: 319 uncompressed: false - body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}' + body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}' headers: Content-Length: - - "330" + - "319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a90dc61-ef21-424d-a824-cf1f8b0e8e0c + - c267e618-8e7a-4197-a483-d763532525e5 status: 200 OK code: 200 - duration: 533.838482ms + duration: 677.307958ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74e2a406-8cf0-491b-b4c4-825b788700d0 + - 30de1bc8-6231-4737-a28e-b30a755e5da6 status: 200 OK code: 200 - duration: 81.932859ms + duration: 122.948458ms - id: 3 request: proto: HTTP/1.1 @@ -165,7 +165,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 941a1bbe-bbec-4cea-a273-aa64ae5fe7a7 + - 43b6f551-8dcb-422c-a2e9-32761c716e5a status: 200 OK code: 200 - duration: 66.040072ms + duration: 81.226625ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf7ddcc6-df9b-4573-96b2-517d610cb41a + - c93ff729-8cc4-43db-b20d-b867a3dc5231 status: 200 OK code: 200 - duration: 94.602463ms + duration: 126.549833ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70aac470-d7fb-4240-8dc3-0fdfa00f91fc + - 4e716a84-4902-4fa7-8c1d-5a829940e59c status: 200 OK code: 200 - duration: 84.853007ms + duration: 125.069958ms - id: 6 request: proto: HTTP/1.1 @@ -312,7 +312,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c062435f-f4d7-4a01-838e-2e426b257f4b + - cc1fa89e-a96e-43e4-bff3-6d4a047583fa status: 200 OK code: 200 - duration: 64.363962ms + duration: 94.3835ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bd8166f-3d79-48b2-a508-1f0f9cfe222d + - 379af6f3-651b-4796-9b87-db928e53ec77 status: 200 OK code: 200 - duration: 79.925016ms + duration: 116.045125ms - id: 8 request: proto: HTTP/1.1 @@ -410,7 +410,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c2c7c9b-949e-485b-9b39-b59622209b6c + - 90e40b09-2b82-4270-8b99-c5d7c6e2e792 status: 200 OK code: 200 - duration: 74.028101ms + duration: 100.135625ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 848b319a-379a-4d86-aa58-cc5c9c270e40 + - 8983a052-cd12-424b-9a8a-e96822b4cd6e status: 200 OK code: 200 - duration: 77.105858ms + duration: 72.127875ms - id: 10 request: proto: HTTP/1.1 @@ -508,7 +508,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-zone2.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c30f6af3-87e4-4a61-9b16-3096204198b5 + - e303f5ee-05f6-4307-b1b1-3f3a6db4f6fb status: 200 OK code: 200 - duration: 196.002142ms + duration: 173.467375ms - id: 11 request: proto: HTTP/1.1 @@ -557,7 +557,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -566,20 +566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 33 + content_length: 32 uncompressed: false body: '{"dns_zones":[],"total_count":0}' headers: Content-Length: - - "33" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,7 +587,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa8c6de2-42d4-4ba3-8f61-87ce5e42f45e + - bcde7c43-15fb-4939-9b3e-9c5f55ce2541 status: 200 OK code: 200 - duration: 59.41164ms + duration: 76.222834ms diff --git a/internal/services/domain/testdata/domain-record-arobase.cassette.yaml b/internal/services/domain/testdata/domain-record-arobase.cassette.yaml index 41b2862050..cf1119cc8f 100644 --- a/internal/services/domain/testdata/domain-record-arobase.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-arobase.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 155 + content_length: 149 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"775bd753-1006-42a3-8aff-52333a2be189","name":"","priority":0,"ttl":3600,"type":"TXT"}]}' + body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8","name":"","priority":0,"ttl":3600,"type":"TXT"}]}' headers: Content-Length: - - "155" + - "149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7cb4e95-edad-4645-8b4c-248b414e0ad6 + - 1fa179f1-42ef-422b-9dde-e4e9a2338e51 status: 200 OK code: 200 - duration: 685.201436ms + duration: 353.2255ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?name=&order_by=name_asc&type=TXT method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"775bd753-1006-42a3-8aff-52333a2be189","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "172" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa5e8d06-5a58-4f46-9b86-713bb2baf779 + - 1d2961ef-029e-4952-ba02-9109ce7429cf status: 200 OK code: 200 - duration: 64.580895ms + duration: 68.8125ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=TXT method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"775bd753-1006-42a3-8aff-52333a2be189","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "172" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b738a925-1309-47c0-b2ca-9b27948c6b16 + - e578e4bf-015c-4501-ad40-2cb4a3162b60 status: 200 OK code: 200 - duration: 84.467534ms + duration: 66.229458ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?id=775bd753-1006-42a3-8aff-52333a2be189&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?id=de4b8606-6411-42fc-baaf-6a88e3ae6db8&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"775bd753-1006-42a3-8aff-52333a2be189","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "172" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 345f4588-ecef-4915-b861-9447250c9324 + - 208e2029-817c-4f9e-95cb-6b4294831f58 status: 200 OK code: 200 - duration: 69.670511ms + duration: 83.822958ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-arobase.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 354 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2025-03-12T10:07:39Z"}],"total_count":1}' headers: Content-Length: - - "366" + - "354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc1b3b39-990c-4e15-8d49-efa9d56afb10 + - f9790f63-1460-4bef-8474-180d27d38629 status: 200 OK code: 200 - duration: 54.210689ms + duration: 69.051667ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 456 + content_length: 435 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"12a7ea50-7010-461d-b439-2152cdde0029","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b30f3913-985c-46d4-8d61-b067a0e50712","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"\"this-is-a-test\"","id":"775bd753-1006-42a3-8aff-52333a2be189","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"91055b60-c978-4e2e-9e86-12c97c80e02e","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b53d95e9-c7b1-40f3-b66c-6a79bf999395","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"\"this-is-a-test\"","id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":3}' headers: Content-Length: - - "456" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 439bcbbc-e479-4264-a1ed-8fe8da9452dc + - 5dbf47cc-ce82-4cc8-a072-a1173a6637a4 status: 200 OK code: 200 - duration: 70.294268ms + duration: 73.97225ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?id=775bd753-1006-42a3-8aff-52333a2be189&name=&order_by=name_asc&page=1&type=TXT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?id=de4b8606-6411-42fc-baaf-6a88e3ae6db8&name=&order_by=name_asc&page=1&type=TXT method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"775bd753-1006-42a3-8aff-52333a2be189","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "172" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbcf55bf-c488-4bc5-a742-35d65daf0733 + - b8a6c0a4-dfed-47b8-ad57-d4e41db44c4f status: 200 OK code: 200 - duration: 97.333192ms + duration: 84.266791ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-arobase.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 354 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2025-03-12T10:07:39Z"}],"total_count":1}' headers: Content-Length: - - "366" + - "354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8f414c5-f3e7-47f9-8b54-1c534c5d9672 + - 02d42dd4-a67e-4b80-b0ae-55709f0965eb status: 200 OK code: 200 - duration: 75.9689ms + duration: 82.062417ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?id=775bd753-1006-42a3-8aff-52333a2be189&name=&order_by=name_asc&page=1&type=TXT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?id=de4b8606-6411-42fc-baaf-6a88e3ae6db8&name=&order_by=name_asc&page=1&type=TXT method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"775bd753-1006-42a3-8aff-52333a2be189","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "172" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92875659-e298-4c97-8337-b9ab0b911b21 + - da9d1596-c0c4-4389-a9be-f875523fe7eb status: 200 OK code: 200 - duration: 72.599818ms + duration: 72.898ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-arobase.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 354 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2025-03-12T10:07:39Z"}],"total_count":1}' headers: Content-Length: - - "366" + - "354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f31550cc-bdd7-46b9-a339-59dce403f38c + - f92d5024-0b50-4ebb-804c-3c8b776a85e3 status: 200 OK code: 200 - duration: 62.465583ms + duration: 68.011167ms - id: 10 request: proto: HTTP/1.1 @@ -508,8 +508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?id=775bd753-1006-42a3-8aff-52333a2be189&name=&order_by=name_asc&page=1&type=TXT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?id=de4b8606-6411-42fc-baaf-6a88e3ae6db8&name=&order_by=name_asc&page=1&type=TXT method: GET response: proto: HTTP/2.0 @@ -517,20 +517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"775bd753-1006-42a3-8aff-52333a2be189","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"this-is-a-test\"","id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "172" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 878f26af-ed12-4f7e-a65c-53c464608d6f + - 72a4bd2f-b892-4b3f-a922-fabaf4fec2cf status: 200 OK code: 200 - duration: 58.143065ms + duration: 95.240333ms - id: 11 request: proto: HTTP/1.1 @@ -557,7 +557,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-arobase.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -566,20 +566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 354 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2025-03-12T10:07:39Z"}],"total_count":1}' headers: Content-Length: - - "366" + - "354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee1f0d63-75f3-4edb-8f90-ace8e38b299b + - 169cd68e-ba08-4a3c-9a41-9e7c330561fb status: 200 OK code: 200 - duration: 89.151239ms + duration: 75.245334ms - id: 12 request: proto: HTTP/1.1 @@ -602,13 +602,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"775bd753-1006-42a3-8aff-52333a2be189"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"de4b8606-6411-42fc-baaf-6a88e3ae6db8"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records method: PATCH response: @@ -628,9 +628,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c444cf6f-4c00-40d5-9290-d6d42f494f7d + - 9c5cad72-0891-464a-b433-0a77c71f8b9f status: 200 OK code: 200 - duration: 91.386538ms + duration: 89.177ms - id: 13 request: proto: HTTP/1.1 @@ -657,7 +657,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"12a7ea50-7010-461d-b439-2152cdde0029","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b30f3913-985c-46d4-8d61-b067a0e50712","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"91055b60-c978-4e2e-9e86-12c97c80e02e","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"b53d95e9-c7b1-40f3-b66c-6a79bf999395","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b17ccd9-52a6-4199-be5f-1e0fa24163d8 + - 6b34eea9-b036-4d3d-a5e9-dffb74964334 status: 200 OK code: 200 - duration: 55.564603ms + duration: 88.013458ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-arobase.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 354 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-arobase","updated_at":"2025-03-12T10:07:43Z"}],"total_count":1}' headers: Content-Length: - - "366" + - "354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c248213f-913d-4cb0-bae8-232d720d9351 + - 2725bd9c-b98d-4c4f-9523-7d90fc6a9b1e status: 200 OK code: 200 - duration: 59.680359ms + duration: 75.885125ms - id: 15 request: proto: HTTP/1.1 @@ -755,7 +755,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-arobase.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-arobase","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-arobase","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:10 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bd9623f-b9b5-4a8d-a52e-a3c86d0c0159 + - c2c7f44e-586a-4995-bca9-ec7630e87f50 status: 200 OK code: 200 - duration: 57.576915ms + duration: 72.017542ms - id: 16 request: proto: HTTP/1.1 @@ -804,7 +804,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -824,9 +824,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:10 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61e43b5d-4f9a-49d5-a3af-ba772f77506c + - f0c7cb5f-7b3c-4c8a-9337-799463b67481 status: 200 OK code: 200 - duration: 224.376936ms + duration: 139.898542ms - id: 17 request: proto: HTTP/1.1 @@ -853,7 +853,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-arobase.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -873,9 +873,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:10 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,7 +883,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2541bea5-2b10-44ac-9051-f531b0ec7e59 + - 38863a20-f180-41dd-8d7c-bddfdb375381 status: 403 Forbidden code: 403 - duration: 55.761849ms + duration: 69.84975ms diff --git a/internal/services/domain/testdata/domain-record-basic.cassette.yaml b/internal/services/domain/testdata/domain-record-basic.cassette.yaml index fe8d757a7c..b5b85f4879 100644 --- a/internal/services/domain/testdata/domain-record-basic.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 144 + content_length: 138 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"72339064-086e-4733-b7b1-c0e1b3c980b3","name":"","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"df2f9a18-7657-4c16-ba11-b8e2b06b5108","name":"","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "144" + - "138" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:44 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4779080f-c18c-49d3-87da-78570fbf4cfb + - 496e5934-22be-4ea8-9832-042ca925d2b9 status: 200 OK code: 200 - duration: 504.238203ms + duration: 792.090709ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=A method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"72339064-086e-4733-b7b1-c0e1b3c980b3","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"df2f9a18-7657-4c16-ba11-b8e2b06b5108","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "161" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:44 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b7f76db-3400-465f-b1ee-4e5a9de6eef7 + - 4b05976e-37eb-4039-bcc6-ff33ff12e8a4 status: 200 OK code: 200 - duration: 59.872618ms + duration: 157.751917ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=A method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"72339064-086e-4733-b7b1-c0e1b3c980b3","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"df2f9a18-7657-4c16-ba11-b8e2b06b5108","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "161" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:44 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ffb1ad3-b81a-41d4-9ae0-985bf75db9cb + - 5c635264-bc0c-4e66-89ae-09750378093a status: 200 OK code: 200 - duration: 62.885937ms + duration: 73.196666ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=72339064-086e-4733-b7b1-c0e1b3c980b3&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=df2f9a18-7657-4c16-ba11-b8e2b06b5108&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"72339064-086e-4733-b7b1-c0e1b3c980b3","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"df2f9a18-7657-4c16-ba11-b8e2b06b5108","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "161" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:44 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5728498-7bc5-48a2-bb94-1ba310428efe + - 0d9223bd-8f54-4753-9be4-7e394339dc3f status: 200 OK code: 200 - duration: 57.195822ms + duration: 70.528ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:44Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:44 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 352b8914-8130-45be-a4c4-9d9e9d0203fa + - 1c2e3e08-9173-48b6-bb10-c34b6a965c92 status: 200 OK code: 200 - duration: 64.81638ms + duration: 76.189583ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 424 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"72339064-086e-4733-b7b1-c0e1b3c980b3","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"d167dad6-7936-4ac6-85a3-511343b3cc5e","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"6ff3fdb8-5048-4d3e-9d5d-0e0f225fb0f8","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"df2f9a18-7657-4c16-ba11-b8e2b06b5108","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"a091bf3b-b5e8-4c9c-a63d-4f0b090fb11f","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"50665c57-5b84-4e97-8044-808f3265b3d4","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":3}' headers: Content-Length: - - "445" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:45 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3ef33bf-e5a9-4869-b91c-99c854759ebb + - 75472548-7403-47aa-81f2-63079acd1175 status: 200 OK code: 200 - duration: 56.48761ms + duration: 161.33125ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=72339064-086e-4733-b7b1-c0e1b3c980b3&name=&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=df2f9a18-7657-4c16-ba11-b8e2b06b5108&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"72339064-086e-4733-b7b1-c0e1b3c980b3","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"df2f9a18-7657-4c16-ba11-b8e2b06b5108","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "161" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:45 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1707493d-92b4-4370-bb01-bbe302481bf0 + - 7877bba6-8c09-4474-bbdc-0cab81ebb59f status: 200 OK code: 200 - duration: 61.420732ms + duration: 119.586125ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:44Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:45 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 722a47cf-d9c5-4888-abd9-4845dc704ca7 + - 32e3bad4-2701-418a-b15c-a168ba5333e0 status: 200 OK code: 200 - duration: 64.571343ms + duration: 86.284042ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=72339064-086e-4733-b7b1-c0e1b3c980b3&name=&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=df2f9a18-7657-4c16-ba11-b8e2b06b5108&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"72339064-086e-4733-b7b1-c0e1b3c980b3","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"df2f9a18-7657-4c16-ba11-b8e2b06b5108","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "161" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:46 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75b63fd1-7846-4ba7-9f3a-3bb2ab6ac99f + - fa1a7abe-72c6-4842-a2a9-bcdf7f3fc709 status: 200 OK code: 200 - duration: 64.76378ms + duration: 94.290666ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:44Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:46 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bab0d3b-6c91-45c0-bfa2-c6b2e193f75f + - 748e9277-31fa-41b8-a76f-a5667d5f7a10 status: 200 OK code: 200 - duration: 56.538959ms + duration: 82.602083ms - id: 10 request: proto: HTTP/1.1 @@ -504,13 +504,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"72339064-086e-4733-b7b1-c0e1b3c980b3"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"df2f9a18-7657-4c16-ba11-b8e2b06b5108"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records method: PATCH response: @@ -530,9 +530,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:46 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b16805a-7718-4485-909b-1ff491e4f31c + - e12c4d82-b5f3-4411-9faa-89b2f226f755 status: 200 OK code: 200 - duration: 164.378297ms + duration: 100.148708ms - id: 11 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"d167dad6-7936-4ac6-85a3-511343b3cc5e","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"6ff3fdb8-5048-4d3e-9d5d-0e0f225fb0f8","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"a091bf3b-b5e8-4c9c-a63d-4f0b090fb11f","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"50665c57-5b84-4e97-8044-808f3265b3d4","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:46 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccf62640-8383-4efc-9e7b-c5b0ee04289e + - 3d270a98-44b4-481c-85be-db30fe02b3a2 status: 200 OK code: 200 - duration: 58.500469ms + duration: 100.279542ms - id: 12 request: proto: HTTP/1.1 @@ -608,7 +608,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:46Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:46 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7717578-2f5c-40aa-88da-90de47b78e4e + - e0ca2686-deba-4ac7-a34c-b2c262cb6ead status: 200 OK code: 200 - duration: 60.705298ms + duration: 75.154791ms - id: 13 request: proto: HTTP/1.1 @@ -657,7 +657,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic","updated_at":"2024-06-26T14:45:51Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:51 GMT + - Wed, 12 Mar 2025 10:07:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28c200cb-793e-440d-b2c8-fd0536c5feb1 + - f061cb11-88db-41c0-acea-6596c8a87f57 status: 200 OK code: 200 - duration: 72.086274ms + duration: 68.679125ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,56 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 351 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' + headers: + Content-Length: + - "351" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 12 Mar 2025 10:07:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8ff7e29-c47e-49c9-a250-4922651fd8f0 + status: 200 OK + code: 200 + duration: 90.160834ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -726,9 +775,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:52 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,11 +785,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39bddd48-03fa-4867-8d0a-0675ea99518c + - 52ac42f1-8179-4812-803d-19a0d6fb0dc0 status: 200 OK code: 200 - duration: 181.479601ms - - id: 15 + duration: 162.808833ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -757,7 +806,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records method: PATCH response: @@ -766,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 146 + content_length: 140 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "146" + - "140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:52 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,11 +836,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae40a18b-6cec-4b1b-b292-4a0f7827adc8 + - c7c0706e-3570-4367-a481-f6e18db9a109 status: 200 OK code: 200 - duration: 430.430709ms - - id: 16 + duration: 764.590625ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -806,7 +855,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=tf&order_by=name_asc&type=A method: GET response: @@ -815,20 +864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:52 GMT + - Wed, 12 Mar 2025 10:07:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,11 +885,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc62e287-ccdb-491a-b9be-dcb93824c1da + - 865bc13b-212a-4d5d-8e09-4c9570e08898 status: 200 OK code: 200 - duration: 71.26042ms - - id: 17 + duration: 68.704334ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -855,7 +904,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=tf&order_by=name_asc&page=1&type=A method: GET response: @@ -864,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:52 GMT + - Wed, 12 Mar 2025 10:07:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,11 +934,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60427f86-ed13-4dfe-86c9-f90a47edfdcb + - 9d05c888-9e36-49ff-b8be-c4b6590d29fb status: 200 OK code: 200 - duration: 65.941223ms - - id: 18 + duration: 77.044208ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -904,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -913,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:52 GMT + - Wed, 12 Mar 2025 10:07:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,11 +983,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c59f04d-f9b7-477a-8d83-d3301ff912e0 + - d8afba62-e7f6-4569-9562-e5bf07f58b20 status: 200 OK code: 200 - duration: 59.730193ms - - id: 19 + duration: 72.054209ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -953,7 +1002,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -962,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:52Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:49Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:52 GMT + - Wed, 12 Mar 2025 10:07:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,11 +1032,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dcbeca5-dd5b-4c04-aa03-c5e57cf4e520 + - 541c18d7-4561-40bf-925f-0b3170c27845 status: 200 OK code: 200 - duration: 57.111096ms - - id: 20 + duration: 91.459833ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1002,7 +1051,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1011,20 +1060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 426 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"94e568d3-338b-4346-9f1f-344b50621673","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"11e1798f-45dd-4800-b159-56be5bec89d8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.1","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"b06b2de3-1337-4af9-b300-bf184829a5f8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a69ca5b8-252c-4ad5-960c-34cf460ed90d","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.1","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "447" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:53 GMT + - Wed, 12 Mar 2025 10:07:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,11 +1081,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 832617c0-a5f0-40bb-8f26-e0ae7d7a51d2 + - be657c1b-fb63-45f0-900c-ea735dcfadbe status: 200 OK code: 200 - duration: 58.893943ms - - id: 21 + duration: 76.775917ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1051,8 +1100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1060,20 +1109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:53 GMT + - Wed, 12 Mar 2025 10:07:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,11 +1130,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c69018ac-f5c0-492e-866c-48ecefc162cf + - 23e15af8-3275-491e-acda-f050a3c82b75 status: 200 OK code: 200 - duration: 69.205244ms - - id: 22 + duration: 68.76875ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1100,7 +1149,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1109,20 +1158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:52Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:49Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:53 GMT + - Wed, 12 Mar 2025 10:07:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,11 +1179,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0076b9bc-d737-4aae-8cbc-defa342e53ff + - 3a160379-bc88-46c9-b2b5-a7570a9ff414 status: 200 OK code: 200 - duration: 53.93273ms - - id: 23 + duration: 108.239625ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1149,8 +1198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1158,20 +1207,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:53 GMT + - Wed, 12 Mar 2025 10:07:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,11 +1228,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f06aff2e-79fa-4e69-8739-16522f9614f1 + - 4751839a-2889-49cd-bb5c-10b48aafec91 status: 200 OK code: 200 - duration: 71.913543ms - - id: 24 + duration: 73.563208ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1198,7 +1247,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1207,20 +1256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:52Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:49Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:53 GMT + - Wed, 12 Mar 2025 10:07:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,11 +1277,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df585c3c-45c4-407c-b9ed-3eb354f0ee94 + - b8272d5e-e259-47b9-b0d5-2e34dd6c979a status: 200 OK code: 200 - duration: 67.443377ms - - id: 25 + duration: 83.651834ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1243,13 +1292,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"86a11d02-518c-490e-a566-82491fe7fd1e","records":[{"data":"127.0.0.2","name":"tf","priority":0,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"48be15c6-7266-429d-8ac7-f8d5f5807223","records":[{"data":"127.0.0.2","name":"tf","priority":0,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records method: PATCH response: @@ -1258,20 +1307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 146 + content_length: 140 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "146" + - "140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:54 GMT + - Wed, 12 Mar 2025 10:07:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,11 +1328,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 179a691f-e78a-4aa7-bcfe-8acdac2a521a + - e07d2f34-2deb-4e62-81f8-29dd24b2a108 status: 200 OK code: 200 - duration: 113.672904ms - - id: 26 + duration: 164.116041ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1298,7 +1347,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=tf&order_by=name_asc&type=A method: GET response: @@ -1307,20 +1356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:54 GMT + - Wed, 12 Mar 2025 10:07:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,11 +1377,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9931af45-eaaa-4146-883b-59efc739d42c + - da67ec21-2830-4399-b71d-6c847acc0a7a status: 200 OK code: 200 - duration: 61.018314ms - - id: 27 + duration: 73.941416ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1347,8 +1396,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1356,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:54 GMT + - Wed, 12 Mar 2025 10:07:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,11 +1426,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 195e9879-8e12-4b5f-9edf-c9f466c048ac + - 55a348b2-535b-4527-b0de-dda3696aeb92 status: 200 OK code: 200 - duration: 66.266508ms - - id: 28 + duration: 92.463542ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1396,7 +1445,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1405,20 +1454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:54Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:53Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:54 GMT + - Wed, 12 Mar 2025 10:07:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,11 +1475,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0291b1b0-51ae-4263-8d5e-3e9a2621c956 + - c247d789-1861-485b-a5b4-cdcf3646a8a3 status: 200 OK code: 200 - duration: 64.318943ms - - id: 29 + duration: 76.830625ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1445,7 +1494,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1454,20 +1503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 426 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"94e568d3-338b-4346-9f1f-344b50621673","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"11e1798f-45dd-4800-b159-56be5bec89d8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"b06b2de3-1337-4af9-b300-bf184829a5f8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a69ca5b8-252c-4ad5-960c-34cf460ed90d","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "447" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:54 GMT + - Wed, 12 Mar 2025 10:07:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,11 +1524,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7f48a49-77d5-480c-b4d5-75f4fee75a9c + - 59389d62-d3fe-4c14-8ee5-1dd2526b766c status: 200 OK code: 200 - duration: 60.527782ms - - id: 30 + duration: 79.652166ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1494,8 +1543,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1503,20 +1552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:55 GMT + - Wed, 12 Mar 2025 10:07:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,11 +1573,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 029c2704-d67f-43d4-884d-6e2a7909825a + - 40edade8-7623-4940-84ca-15e0bbb39a2e status: 200 OK code: 200 - duration: 56.168154ms - - id: 31 + duration: 76.3115ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1543,7 +1592,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1552,20 +1601,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:54Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic","updated_at":"2025-03-12T10:07:54Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:55 GMT + - Wed, 12 Mar 2025 10:07:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,11 +1622,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b8115a2-5a9a-419e-bb4e-fd6e2a8bc054 + - dbe5a962-5fdd-439b-81c5-708fd9f284f3 status: 200 OK code: 200 - duration: 62.792129ms - - id: 32 + duration: 81.368125ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1592,8 +1641,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1601,20 +1650,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 163 + content_length: 156 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "163" + - "156" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:55 GMT + - Wed, 12 Mar 2025 10:07:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,11 +1671,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7e68289-121c-4fb1-84f6-220109e3d47e + - c2be7848-85f2-425b-90d7-de60ebfe471a status: 200 OK code: 200 - duration: 58.293282ms - - id: 33 + duration: 75.091375ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1641,7 +1690,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1650,20 +1699,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:54Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic","updated_at":"2025-03-12T10:07:54Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:55 GMT + - Wed, 12 Mar 2025 10:07:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,11 +1720,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc8fc1d9-7c81-4f7f-8d76-e6b5f0c16305 + - 61a3dcfd-47cf-47ac-9a97-56ddc8dd3a0c status: 200 OK code: 200 - duration: 63.061141ms - - id: 34 + duration: 103.961541ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1686,13 +1735,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"86a11d02-518c-490e-a566-82491fe7fd1e","records":[{"data":"127.0.0.2","name":"tf","priority":10,"ttl":43200,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"48be15c6-7266-429d-8ac7-f8d5f5807223","records":[{"data":"127.0.0.2","name":"tf","priority":10,"ttl":43200,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records method: PATCH response: @@ -1701,20 +1750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 142 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":10,"ttl":43200,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":10,"ttl":43200,"type":"A"}]}' headers: Content-Length: - - "148" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:56 GMT + - Wed, 12 Mar 2025 10:07:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,11 +1771,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49cf7f93-273f-4181-8b96-e3d1a013b4c9 + - 869e3dd5-82ae-4fc4-bf4b-f8cf84654f8c status: 200 OK code: 200 - duration: 106.058305ms - - id: 35 + duration: 165.933375ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1741,7 +1790,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=tf&order_by=name_asc&type=A method: GET response: @@ -1750,20 +1799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:56 GMT + - Wed, 12 Mar 2025 10:07:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,11 +1820,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe8a98ee-b884-439b-b814-8fa9c8c8c108 + - 2d48631e-0146-491b-ae70-e9c6c5b238ff status: 200 OK code: 200 - duration: 67.765183ms - - id: 36 + duration: 71.481208ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1790,8 +1839,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1799,20 +1848,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:56 GMT + - Wed, 12 Mar 2025 10:07:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,11 +1869,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f35851d4-7103-4eda-a326-bb819a140597 + - b6853097-3180-46d4-9b73-915ef4d3cc8b status: 200 OK code: 200 - duration: 52.403503ms - - id: 37 + duration: 68.049791ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1839,7 +1888,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1848,20 +1897,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:56Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:56Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:56 GMT + - Wed, 12 Mar 2025 10:07:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1869,11 +1918,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e79a794b-0ed5-478b-83d2-ca6dee370ef1 + - 2f2d1796-0935-4605-870c-5b56fbee98f2 status: 200 OK code: 200 - duration: 64.862056ms - - id: 38 + duration: 89.042625ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1888,7 +1937,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1897,20 +1946,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 428 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"94e568d3-338b-4346-9f1f-344b50621673","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"11e1798f-45dd-4800-b159-56be5bec89d8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"b06b2de3-1337-4af9-b300-bf184829a5f8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a69ca5b8-252c-4ad5-960c-34cf460ed90d","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":3}' headers: Content-Length: - - "449" + - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:56 GMT + - Wed, 12 Mar 2025 10:07:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1918,11 +1967,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2013d42-5efb-4e14-bd88-eaca7147ea20 + - ae7124e7-41ce-46e7-b654-7f62b4b723ac status: 200 OK code: 200 - duration: 54.686057ms - - id: 39 + duration: 75.991208ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1937,8 +1986,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1946,20 +1995,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:57 GMT + - Wed, 12 Mar 2025 10:07:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1967,11 +2016,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37514371-2338-4e39-b8ec-2bd85b714d5c + - a68154f9-8c4d-4595-a472-8ce78e9c4703 status: 200 OK code: 200 - duration: 73.026403ms - - id: 40 + duration: 90.403416ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1986,7 +2035,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1995,20 +2044,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:56Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:56Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:57 GMT + - Wed, 12 Mar 2025 10:07:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2016,11 +2065,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0191ab2-c0c4-4d95-bf82-42e5c82e6eb3 + - e5a9ee52-c7b6-4a91-a010-b364aeeed9fd status: 200 OK code: 200 - duration: 59.270153ms - - id: 41 + duration: 70.261875ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2035,8 +2084,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -2044,20 +2093,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:57 GMT + - Wed, 12 Mar 2025 10:07:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2065,11 +2114,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f781a751-8e1b-4bcc-abb5-2656d5ef0e2d + - 63733f91-b250-4887-b6dd-6f4c2a55050f status: 200 OK code: 200 - duration: 56.855112ms - - id: 42 + duration: 98.616375ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2084,7 +2133,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2093,20 +2142,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:56Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:07:56Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:57 GMT + - Wed, 12 Mar 2025 10:07:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2114,11 +2163,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58261893-8c6d-4ac9-a5bb-8db73f5586e5 + - 4ae42947-21bd-4e4b-aa75-b7d48ec42209 status: 200 OK code: 200 - duration: 59.825814ms - - id: 43 + duration: 717.547416ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2129,13 +2178,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"ASPMX.L.GOOGLE.COM.","name":"record_mx","priority":1,"ttl":600,"type":"MX","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"add":{"records":[{"data":"aspmx.l.google.com.","name":"record_mx","priority":1,"ttl":600,"type":"MX","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records method: PATCH response: @@ -2144,20 +2193,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 159 uncompressed: false - body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"aabfaa8a-a1b9-4203-bac4-a914e9691790","name":"record_mx","priority":1,"ttl":600,"type":"MX"}]}' + body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"14b62d0f-266f-4f24-91c7-dc0ea9c0aee9","name":"record_mx","priority":1,"ttl":600,"type":"MX"}]}' headers: Content-Length: - - "165" + - "159" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:58 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2165,11 +2214,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62854fcb-74a3-4c9f-a93f-53b8af1d9754 + - 11986793-e796-4392-bb9c-266af2baa892 status: 200 OK code: 200 - duration: 125.744187ms - - id: 44 + duration: 130.31975ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2184,7 +2233,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=record_mx&order_by=name_asc&type=MX method: GET response: @@ -2193,20 +2242,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 182 + content_length: 175 uncompressed: false - body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"aabfaa8a-a1b9-4203-bac4-a914e9691790","name":"record_mx","priority":1,"ttl":600,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"14b62d0f-266f-4f24-91c7-dc0ea9c0aee9","name":"record_mx","priority":1,"ttl":600,"type":"MX"}],"total_count":1}' headers: Content-Length: - - "182" + - "175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:58 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2214,11 +2263,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8ae0331-30bd-4310-b27d-068d18c200ce + - 0152da48-a2cc-4e8c-9074-c89871b39239 status: 200 OK code: 200 - duration: 52.297738ms - - id: 45 + duration: 79.948125ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2233,7 +2282,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=record_mx&order_by=name_asc&page=1&type=MX method: GET response: @@ -2242,20 +2291,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 182 + content_length: 175 uncompressed: false - body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"aabfaa8a-a1b9-4203-bac4-a914e9691790","name":"record_mx","priority":1,"ttl":600,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"14b62d0f-266f-4f24-91c7-dc0ea9c0aee9","name":"record_mx","priority":1,"ttl":600,"type":"MX"}],"total_count":1}' headers: Content-Length: - - "182" + - "175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:58 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2263,11 +2312,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1454d479-3a9c-4186-9d99-136dccf4d9db + - 459fcf6e-da51-4ab4-994a-814b8f3ff644 status: 200 OK code: 200 - duration: 64.279463ms - - id: 46 + duration: 73.500875ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2282,8 +2331,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=aabfaa8a-a1b9-4203-bac4-a914e9691790&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=14b62d0f-266f-4f24-91c7-dc0ea9c0aee9&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -2291,20 +2340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 182 + content_length: 175 uncompressed: false - body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"aabfaa8a-a1b9-4203-bac4-a914e9691790","name":"record_mx","priority":1,"ttl":600,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"14b62d0f-266f-4f24-91c7-dc0ea9c0aee9","name":"record_mx","priority":1,"ttl":600,"type":"MX"}],"total_count":1}' headers: Content-Length: - - "182" + - "175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:58 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2312,11 +2361,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 315ad485-c9ff-467f-99a9-e281bbc20192 + - 1b23c3ce-4a0c-4df1-b5d3-c0c7e9aee572 status: 200 OK code: 200 - duration: 60.079127ms - - id: 47 + duration: 82.640291ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2331,7 +2380,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2340,20 +2389,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:58Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:08:00Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:58 GMT + - Wed, 12 Mar 2025 10:08:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,11 +2410,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 446e9375-d3cf-493f-aeb6-854f341605da + - a93abc28-64f5-440f-9bc8-2f7c2933f25c status: 200 OK code: 200 - duration: 64.790207ms - - id: 48 + duration: 67.566958ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2380,7 +2429,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -2389,20 +2438,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 602 + content_length: 574 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"94e568d3-338b-4346-9f1f-344b50621673","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"11e1798f-45dd-4800-b159-56be5bec89d8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1 aspmx.l.google.com.","id":"aabfaa8a-a1b9-4203-bac4-a914e9691790","name":"record_mx","priority":1,"ttl":600,"type":"MX"},{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":4}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"b06b2de3-1337-4af9-b300-bf184829a5f8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a69ca5b8-252c-4ad5-960c-34cf460ed90d","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"1 aspmx.l.google.com.","id":"14b62d0f-266f-4f24-91c7-dc0ea9c0aee9","name":"record_mx","priority":1,"ttl":600,"type":"MX"},{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":4}' headers: Content-Length: - - "602" + - "574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:58 GMT + - Wed, 12 Mar 2025 10:08:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,11 +2459,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5512febb-18b9-4939-8e16-954f1f77053e + - 14029bde-d088-4d3c-a78f-10966ad860ea status: 200 OK code: 200 - duration: 57.609556ms - - id: 49 + duration: 330.276ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2429,8 +2478,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=aabfaa8a-a1b9-4203-bac4-a914e9691790&name=record_mx&order_by=name_asc&page=1&type=MX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=14b62d0f-266f-4f24-91c7-dc0ea9c0aee9&name=record_mx&order_by=name_asc&page=1&type=MX method: GET response: proto: HTTP/2.0 @@ -2438,20 +2487,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 182 + content_length: 175 uncompressed: false - body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"aabfaa8a-a1b9-4203-bac4-a914e9691790","name":"record_mx","priority":1,"ttl":600,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"1 aspmx.l.google.com.","id":"14b62d0f-266f-4f24-91c7-dc0ea9c0aee9","name":"record_mx","priority":1,"ttl":600,"type":"MX"}],"total_count":1}' headers: Content-Length: - - "182" + - "175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2459,11 +2508,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aa74c0b-a0a9-4830-9a67-dbc2539326b1 + - cb075da2-57d0-4110-b8ff-28bcb3203740 status: 200 OK code: 200 - duration: 63.192528ms - - id: 50 + duration: 63.055334ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2478,8 +2527,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=86a11d02-518c-490e-a566-82491fe7fd1e&name=tf&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?id=48be15c6-7266-429d-8ac7-f8d5f5807223&name=tf&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -2487,20 +2536,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 158 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"86a11d02-518c-490e-a566-82491fe7fd1e","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","id":"48be15c6-7266-429d-8ac7-f8d5f5807223","name":"tf","priority":10,"ttl":43200,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2508,11 +2557,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8707394-b680-4994-8980-07e640a61b48 + - 47151e1b-a14e-43b4-a51e-ec24fb401473 status: 200 OK code: 200 - duration: 69.365224ms - - id: 51 + duration: 74.553875ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2527,7 +2576,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2536,20 +2585,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:58Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:08:00Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2557,11 +2606,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73ff2625-e50a-44e1-885f-724d3cb55e01 + - bdecf6ff-7b5c-4237-8f74-e0f93e5e8326 status: 200 OK code: 200 - duration: 57.785964ms - - id: 52 + duration: 90.824333ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2576,7 +2625,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2585,20 +2634,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:58Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:08:00Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2606,11 +2655,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fc62f9d-533e-499c-9d41-4aa3c6aa5243 + - 31695f19-3775-4511-884f-4da904084bad status: 200 OK code: 200 - duration: 51.793413ms - - id: 53 + duration: 79.278292ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2621,13 +2670,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"86a11d02-518c-490e-a566-82491fe7fd1e"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"14b62d0f-266f-4f24-91c7-dc0ea9c0aee9"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records method: PATCH response: @@ -2647,9 +2696,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2657,11 +2706,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c246a9c9-e874-478b-9b8b-4665b44418fe + - 2870f133-75d9-4f4d-a054-acdbb9e5549c status: 200 OK code: 200 - duration: 90.623544ms - - id: 54 + duration: 105.267584ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2672,13 +2721,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"aabfaa8a-a1b9-4203-bac4-a914e9691790"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"48be15c6-7266-429d-8ac7-f8d5f5807223"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records method: PATCH response: @@ -2698,9 +2747,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2708,11 +2757,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9218080c-b8d7-4cd0-8e01-ca9b58d24cd8 + - a50a8f03-1142-426a-a4e9-d87d040762fe status: 200 OK code: 200 - duration: 140.50723ms - - id: 55 + duration: 140.262375ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2727,7 +2776,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -2736,20 +2785,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"94e568d3-338b-4346-9f1f-344b50621673","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"11e1798f-45dd-4800-b159-56be5bec89d8","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"b06b2de3-1337-4af9-b300-bf184829a5f8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a69ca5b8-252c-4ad5-960c-34cf460ed90d","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2757,11 +2806,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 887f2bcf-7fc7-4f4d-b83a-83d4783cf6b3 + - 8dd0ddc2-2424-496c-b6d0-a08266fb7e18 status: 200 OK code: 200 - duration: 53.846042ms - - id: 56 + duration: 85.180875ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2776,8 +2825,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: proto: HTTP/2.0 @@ -2785,20 +2834,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 299 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:59Z"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"b06b2de3-1337-4af9-b300-bf184829a5f8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a69ca5b8-252c-4ad5-960c-34cf460ed90d","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "364" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2806,11 +2855,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ed772a-d494-44bf-bc0d-f4735fbc5a30 + - 7a3a68e9-e7fd-42ca-9d54-7cf8d840ac64 status: 200 OK code: 200 - duration: 60.325962ms - - id: 57 + duration: 69.536542ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2825,8 +2874,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: proto: HTTP/2.0 @@ -2834,20 +2883,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 352 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"94e568d3-338b-4346-9f1f-344b50621673","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"11e1798f-45dd-4800-b159-56be5bec89d8","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "313" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2855,11 +2904,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 103665e6-0bfc-4d35-8ccd-b45e0f68e480 + - aef7f716-1187-4e58-9a43-bb4c8056f2de status: 200 OK code: 200 - duration: 67.458586ms - - id: 58 + duration: 75.116875ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2874,7 +2923,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -2883,20 +2932,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2024-06-26T14:45:59Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic","updated_at":"2025-03-12T10:08:03Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:45:59 GMT + - Wed, 12 Mar 2025 10:08:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2904,11 +2953,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cea94ad-ea8f-4a63-8a65-858f1c94620d + - 69179101-9c61-455d-9573-d29c167df709 status: 200 OK code: 200 - duration: 64.121983ms - - id: 59 + duration: 66.526125ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2923,7 +2972,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -2932,20 +2981,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic","updated_at":"2024-06-26T14:46:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic","updated_at":"2025-03-12T10:08:05Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:46:04 GMT + - Wed, 12 Mar 2025 10:08:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2953,11 +3002,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9776b07e-3d79-4190-97fc-139b2d2a1c66 + - ea794504-d5a2-4dd5-994b-bcc0b3078f3c status: 200 OK code: 200 - duration: 75.292341ms - - id: 60 + duration: 84.971125ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2972,7 +3021,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -2981,20 +3030,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic","updated_at":"2024-06-26T14:46:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic","updated_at":"2025-03-12T10:08:05Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:46:04 GMT + - Wed, 12 Mar 2025 10:08:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3002,11 +3051,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd9c7a6c-0653-47cc-b4fc-037cda39f241 + - 70f2cb4d-7d62-4755-a3d9-c8ec0ffec4ce status: 200 OK code: 200 - duration: 64.385027ms - - id: 61 + duration: 94.762833ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3021,7 +3070,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -3041,9 +3090,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:46:04 GMT + - Wed, 12 Mar 2025 10:08:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3051,11 +3100,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0c82704-943d-424c-b344-c2b2dcaaaefe + - 0b9406b6-29b9-4798-bb58-7351ecc47717 status: 200 OK code: 200 - duration: 174.511836ms - - id: 62 + duration: 133.60025ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3070,7 +3119,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -3090,9 +3139,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:46:05 GMT + - Wed, 12 Mar 2025 10:08:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3100,11 +3149,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b5d9709-3801-4d59-a611-976a2af9bc6c + - f5d8ee36-1642-48e2-9304-0814c1e9c5a7 status: 200 OK code: 200 - duration: 209.355218ms - - id: 63 + duration: 211.405916ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3119,7 +3168,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -3139,9 +3188,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 26 Jun 2024 14:46:05 GMT + - Wed, 12 Mar 2025 10:08:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3149,7 +3198,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c02fe38-8ed0-417a-a792-e8c3dafda3fd + - 8828d16e-b5a8-445e-870b-54b659ba73d7 status: 403 Forbidden code: 403 - duration: 69.692219ms + duration: 99.495375ms diff --git a/internal/services/domain/testdata/domain-record-basic2.cassette.yaml b/internal/services/domain/testdata/domain-record-basic2.cassette.yaml index dc6ad42e6f..4b8bef8130 100644 --- a/internal/services/domain/testdata/domain-record-basic2.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-basic2.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 197 + content_length: 216 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"0 mail.scaleway.com.","name":"","priority":0,"ttl":300,"type":"MX","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"add":{"records":[{"data":"feedback-smtp.eu-west-1.amazonses.com.","name":"","priority":10,"ttl":300,"type":"MX","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 155 + content_length: 171 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"}]}' + body: '{"records":[{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"}]}' headers: Content-Length: - - "155" + - "171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,28 +48,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8203ad75-1a1e-485e-9841-131343e5565b + - 679886ed-8720-48e5-bb23-06bb26fcec28 status: 200 OK code: 200 - duration: 654.636198ms + duration: 560.219667ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 216 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"changes":[{"add":{"records":[{"data":"v=DMARC1; p=quarantine; adkim=s","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=MX - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -78,7 +80,7 @@ interactions: trailer: {} content_length: 172 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}]}' headers: Content-Length: - "172" @@ -87,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +99,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f893d30-254e-45b7-8ebb-8c59b3a89472 + - d4f4465c-823a-4e9a-8b27-4c913c9d6d68 status: 200 OK code: 200 - duration: 70.607992ms + duration: 589.419209ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 218 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"10 feedback-smtp.eu-west-1.amazonses.com.","name":"","priority":0,"ttl":300,"type":"MX","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=_dmarc&order_by=name_asc&type=TXT + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 177 + content_length: 188 uncompressed: false - body: '{"records":[{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"}]}' + body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "177" + - "188" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e9def67-1a8b-4c9b-a5ee-6771746a6771 + - c24e136b-e02b-465f-9406-dec2ab836435 status: 200 OK code: 200 - duration: 728.90566ms + duration: 96.867583ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 195 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"changes":[{"add":{"records":[{"data":"mail.scaleway.com.","name":"","priority":0,"ttl":300,"type":"MX","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=MX - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 149 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"}]}' headers: Content-Length: - - "337" + - "149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,50 +199,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f5418e1-fb1c-4ecb-a77c-deceffa58bcc + - ca223db7-8d6d-455a-b19e-7e59f7ea7c8d status: 200 OK code: 200 - duration: 56.961497ms + duration: 688.9405ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 186 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"127.0.0.1","name":"","priority":0,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=MX + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 144 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":2}' headers: Content-Length: - - "144" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 019915c6-6542-4bfc-8602-e81c6dbd42ee + - e2c1b619-ba0d-4849-b782-64ffc3b6b359 status: 200 OK code: 200 - duration: 804.837527ms + duration: 134.394375ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=MX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=_dmarc&order_by=name_asc&page=1&type=TXT method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 188 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "337" + - "188" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,48 +297,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc8291f3-5b0f-4b8a-8d15-84d1d3c16e14 + - 7464b055-a143-40b7-8286-7bf704151d13 status: 200 OK code: 200 - duration: 75.765711ms + duration: 62.921625ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 186 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"changes":[{"add":{"records":[{"data":"127.0.0.1","name":"","priority":0,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=1c418fcd-4fdb-4f0b-8312-8ad04c7f5986&name=&order_by=name_asc&page=1&type=unknown - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 + content_length: 138 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "172" + - "138" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b907eccb-b3d6-4da3-8588-efeb74def8e8 + - a2a36df7-12a5-4e6f-99b6-365b2874dd75 status: 200 OK code: 200 - duration: 78.645457ms + duration: 767.844916ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=MX method: GET response: proto: HTTP/2.0 @@ -374,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":2}' headers: Content-Length: - - "161" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4986539-86cf-4ae5-9dad-40d5401c1e79 + - c613778a-4a34-4a2c-95b9-e44fa00caab0 status: 200 OK code: 200 - duration: 61.96745ms + duration: 84.473417ms - id: 8 request: proto: HTTP/1.1 @@ -414,7 +416,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=MX method: GET response: @@ -423,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 337 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":2}' headers: Content-Length: - - "337" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,50 +446,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e40b35c5-c8d9-4399-85ec-f1b65335c518 + - a9bad5d2-be99-4ac9-a3a1-c7b93379f57f status: 200 OK code: 200 - duration: 66.673492ms + duration: 81.133916ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 216 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"v=DMARC1; p=quarantine; adkim=s","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=A + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 178 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "178" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aeb2724-4435-4d7c-897b-d8738fd13baa + - 5fdf03f2-d80e-4337-8b3a-7f2f70576b6a status: 200 OK code: 200 - duration: 904.474513ms + duration: 66.062458ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=6eb89ece-1cf2-4f72-b912-04735b8a1cea&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -523,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 188 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "161" + - "188" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c60c83a-7769-4ace-905a-99351e54d1fd + - 2655c4a6-9962-4ee9-bbab-80105564897a status: 200 OK code: 200 - duration: 59.39325ms + duration: 84.665625ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=b36cdfba-a710-480d-aa4b-adc89012751b&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -572,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 187 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":1}' headers: Content-Length: - - "365" + - "187" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a697c95c-beb7-487e-a936-5035718ab004 + - 5630c6ff-167c-49b7-a89d-107094d411a1 status: 200 OK code: 200 - duration: 66.656402ms + duration: 67.067958ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=864d6f38-5a55-4b46-8715-e65121147de0&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=MX method: GET response: proto: HTTP/2.0 @@ -621,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 194 + content_length: 323 uncompressed: false - body: '{"records":[{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":2}' headers: Content-Length: - - "194" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e603565a-cf97-4077-b024-f4197dad4cc4 + - 9a3d44d7-f440-4c5e-bea6-863842ae6aeb status: 200 OK code: 200 - duration: 60.225311ms + duration: 75.996958ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=_dmarc&order_by=name_asc&type=TXT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -670,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 195 + content_length: 353 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "195" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ecb7249-44ac-4d45-a44e-e445ab675e7f + - 3ecbf4c7-1ad7-42d0-ae4b-1d0788544022 status: 200 OK code: 200 - duration: 56.386532ms + duration: 62.5875ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=57c91941-b158-4f76-a05f-a8242a42efe8&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "161" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2ec6645-f082-4064-8862-f133463d8f79 + - c0c427b6-a1e9-4296-a3b8-198a6553c06a status: 200 OK code: 200 - duration: 54.539886ms + duration: 77.259042ms - id: 15 request: proto: HTTP/1.1 @@ -759,7 +759,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -768,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d04df13-74cc-416d-9d43-1ca0a7e54968 + - 85093baf-8913-44e6-ad01-02c4defde0ea status: 200 OK code: 200 - duration: 71.574036ms + duration: 73.36875ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=195d9ed8-8174-4c42-bc54-9830b7b44cc7&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -817,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 165 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"}],"total_count":1}' headers: Content-Length: - - "365" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e76ea91b-3009-4504-abfc-a778ab816dd5 + - 69f30fb4-6b14-4d7e-a6d6-6888d3e30c65 status: 200 OK code: 200 - duration: 82.472787ms + duration: 85.319375ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=_dmarc&order_by=name_asc&page=1&type=TXT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=51eb1d19-6c53-48ca-8a15-123b5f83b3cb&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -866,20 +866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 195 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "195" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd43a785-e040-4067-8173-4d968d385cc3 + - c6ba854c-218c-4157-b2cd-5d6c7cc8e606 status: 200 OK code: 200 - duration: 105.479165ms + duration: 110.446208ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=cb494578-7b9a-416c-a129-de97d3f16e6f&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -915,20 +915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 195 + content_length: 353 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "195" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdd493f7-953f-494c-87d1-2716e8fa73bc + - 97b506f7-41e1-4fb3-ad83-658dd29d0f70 status: 200 OK code: 200 - duration: 53.006619ms + duration: 91.712875ms - id: 19 request: proto: HTTP/1.1 @@ -955,7 +955,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -964,20 +964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,10 +985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f7e152f-f916-461c-9942-30f1f8e65ad2 + - 299825d5-cc4a-4fb1-b2d7-b9d4c3fe3bd5 status: 200 OK code: 200 - duration: 84.904297ms + duration: 123.610833ms - id: 20 request: proto: HTTP/1.1 @@ -1004,7 +1004,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1013,20 +1013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 919 + content_length: 877 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"45a5b508-a44b-4036-a289-6e6a3db3fef0","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"8a565c2f-bb63-463f-8208-1cb94521a5bf","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"},{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":6}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"44ae3aac-b3b5-43d3-81ba-825fc4496bfc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"417deb4d-c9ee-4e3e-90de-d0c027c24bd5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"},{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":6}' headers: Content-Length: - - "919" + - "877" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db0026e2-76b8-412d-b322-8147871de456 + - 0d386480-398b-4aed-b6b3-ca0f8870166f status: 200 OK code: 200 - duration: 112.783658ms + duration: 125.4355ms - id: 21 request: proto: HTTP/1.1 @@ -1053,7 +1053,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1062,20 +1062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 919 + content_length: 877 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"45a5b508-a44b-4036-a289-6e6a3db3fef0","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"8a565c2f-bb63-463f-8208-1cb94521a5bf","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"},{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":6}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"44ae3aac-b3b5-43d3-81ba-825fc4496bfc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"417deb4d-c9ee-4e3e-90de-d0c027c24bd5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"},{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":6}' headers: Content-Length: - - "919" + - "877" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b048640-eb7c-4412-987c-a722e72a55e7 + - 10aee188-6dac-46e6-8637-492a495c5ef0 status: 200 OK code: 200 - duration: 75.408619ms + duration: 127.604833ms - id: 22 request: proto: HTTP/1.1 @@ -1102,7 +1102,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1111,20 +1111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 919 + content_length: 877 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"45a5b508-a44b-4036-a289-6e6a3db3fef0","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"8a565c2f-bb63-463f-8208-1cb94521a5bf","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"},{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":6}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"44ae3aac-b3b5-43d3-81ba-825fc4496bfc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"417deb4d-c9ee-4e3e-90de-d0c027c24bd5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"},{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":6}' headers: Content-Length: - - "919" + - "877" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,10 +1132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00e63ad3-2d60-4c44-ae62-4b278ef9548c + - 09eb933c-9eba-4381-aa38-2d8097942ff7 status: 200 OK code: 200 - duration: 108.575736ms + duration: 311.296208ms - id: 23 request: proto: HTTP/1.1 @@ -1151,7 +1151,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1160,20 +1160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 919 + content_length: 877 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"45a5b508-a44b-4036-a289-6e6a3db3fef0","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"8a565c2f-bb63-463f-8208-1cb94521a5bf","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"},{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":6}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"ns0.dom.scw.cloud.","id":"44ae3aac-b3b5-43d3-81ba-825fc4496bfc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"417deb4d-c9ee-4e3e-90de-d0c027c24bd5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"},{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"},{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":6}' headers: Content-Length: - - "919" + - "877" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f3900c1-03b2-4d00-b1f3-20078395f97b + - 8d72d1ff-d2cc-4827-ae34-e01a12468847 status: 200 OK code: 200 - duration: 69.029946ms + duration: 142.937375ms - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=1c418fcd-4fdb-4f0b-8312-8ad04c7f5986&name=&order_by=name_asc&page=1&type=MX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=51eb1d19-6c53-48ca-8a15-123b5f83b3cb&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1209,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 172 + content_length: 154 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "172" + - "154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 949735ce-92f0-4855-8126-c442ebac8f42 + - 186e5312-1fee-44f1-9acb-c18f00743bc2 status: 200 OK code: 200 - duration: 63.257228ms + duration: 96.889416ms - id: 25 request: proto: HTTP/1.1 @@ -1249,8 +1249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=cb494578-7b9a-416c-a129-de97d3f16e6f&name=_dmarc&order_by=name_asc&page=1&type=TXT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=b36cdfba-a710-480d-aa4b-adc89012751b&name=&order_by=name_asc&page=1&type=MX method: GET response: proto: HTTP/2.0 @@ -1258,20 +1258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 195 + content_length: 187 uncompressed: false - body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"cb494578-7b9a-416c-a129-de97d3f16e6f","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":1}' headers: Content-Length: - - "195" + - "187" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,10 +1279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39a1fa36-608b-4464-ac9d-591c596671ff + - 0b890392-bffa-4283-8d9b-926b90ee02ad status: 200 OK code: 200 - duration: 81.36452ms + duration: 107.267375ms - id: 26 request: proto: HTTP/1.1 @@ -1298,8 +1298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=57c91941-b158-4f76-a05f-a8242a42efe8&name=&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=195d9ed8-8174-4c42-bc54-9830b7b44cc7&name=&order_by=name_asc&page=1&type=MX method: GET response: proto: HTTP/2.0 @@ -1307,20 +1307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 161 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.1","id":"57c91941-b158-4f76-a05f-a8242a42efe8","name":"","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 mail.scaleway.com.","id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7","name":"","priority":0,"ttl":300,"type":"MX"}],"total_count":1}' headers: Content-Length: - - "161" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,10 +1328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 497d5375-7be0-465c-8fd3-825f453986f1 + - 13bb2931-4ec0-4587-8ad9-810ebf93fc3f status: 200 OK code: 200 - duration: 82.143401ms + duration: 108.797834ms - id: 27 request: proto: HTTP/1.1 @@ -1347,8 +1347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=864d6f38-5a55-4b46-8715-e65121147de0&name=&order_by=name_asc&page=1&type=MX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?id=6eb89ece-1cf2-4f72-b912-04735b8a1cea&name=_dmarc&order_by=name_asc&page=1&type=TXT method: GET response: proto: HTTP/2.0 @@ -1356,20 +1356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 194 + content_length: 188 uncompressed: false - body: '{"records":[{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=quarantine; adkim=s\"","id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}' headers: Content-Length: - - "194" + - "188" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6a7dba7-477a-4eca-b70d-1c9bf3000735 + - eccebfa7-3203-4095-80aa-cdf0cf3a85ac status: 200 OK code: 200 - duration: 82.980264ms + duration: 110.772292ms - id: 28 request: proto: HTTP/1.1 @@ -1396,7 +1396,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1405,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,10 +1426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7b226b7-2c0b-4c57-98b4-f7f086ba746b + - 2d73cc11-b5ee-41e4-bc28-a8005eaed009 status: 200 OK code: 200 - duration: 88.131254ms + duration: 116.574167ms - id: 29 request: proto: HTTP/1.1 @@ -1445,7 +1445,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1454,20 +1454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bc01149-0df0-469b-a0d5-ec9c45fdad96 + - 5b6b75be-8aea-4646-a2eb-18eb062663db status: 200 OK code: 200 - duration: 68.198037ms + duration: 112.408875ms - id: 30 request: proto: HTTP/1.1 @@ -1494,7 +1494,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1503,20 +1503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2d66291-8529-437f-bd80-57b6b6f533da + - 913c805d-c4c9-4fb5-95f9-07b4b886e8d4 status: 200 OK code: 200 - duration: 68.154268ms + duration: 121.978917ms - id: 31 request: proto: HTTP/1.1 @@ -1543,7 +1543,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1552,20 +1552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,10 +1573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d782e1b-0fba-4a79-8b22-5dfdc11b8de3 + - b1aae9a3-815c-4525-a79b-363171dba92d status: 200 OK code: 200 - duration: 74.155686ms + duration: 133.511292ms - id: 32 request: proto: HTTP/1.1 @@ -1588,13 +1588,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"cb494578-7b9a-416c-a129-de97d3f16e6f"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"6eb89ece-1cf2-4f72-b912-04735b8a1cea"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records method: PATCH response: @@ -1614,9 +1614,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b1b7f93-952f-4fbf-9744-cd8f54c131a2 + - a6fbeadc-1036-405c-a472-5a5d30e1db8b status: 200 OK code: 200 - duration: 113.19698ms + duration: 97.739375ms - id: 33 request: proto: HTTP/1.1 @@ -1639,13 +1639,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"57c91941-b158-4f76-a05f-a8242a42efe8"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"51eb1d19-6c53-48ca-8a15-123b5f83b3cb"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records method: PATCH response: @@ -1665,9 +1665,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1675,11 +1675,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b577e8d-00aa-4dc0-8d17-bb3f3ef690eb + - 67e1e5f5-3694-46a1-889d-460e134feaf6 status: 200 OK code: 200 - duration: 170.120388ms + duration: 128.685875ms - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 132 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"changes":[{"delete":{"id":"195d9ed8-8174-4c42-bc54-9830b7b44cc7"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"records":[]}' + headers: + Content-Length: + - "14" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 12 Mar 2025 10:07:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41bcf1c4-4d80-4290-afff-cfaad0ca199a + status: 200 OK + code: 200 + duration: 167.451125ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1694,7 +1745,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1703,20 +1754,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 621 + content_length: 457 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"45a5b508-a44b-4036-a289-6e6a3db3fef0","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"8a565c2f-bb63-463f-8208-1cb94521a5bf","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"864d6f38-5a55-4b46-8715-e65121147de0","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":4}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"44ae3aac-b3b5-43d3-81ba-825fc4496bfc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"417deb4d-c9ee-4e3e-90de-d0c027c24bd5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"10 feedback-smtp.eu-west-1.amazonses.com.","id":"b36cdfba-a710-480d-aa4b-adc89012751b","name":"","priority":10,"ttl":300,"type":"MX"}],"total_count":3}' headers: Content-Length: - - "621" + - "457" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1724,11 +1775,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d721cc43-3b5c-4558-98e7-0f67cfcad884 + - 10fcd6ec-94fe-405a-9d7a-bb4a50b01ae0 status: 200 OK code: 200 - duration: 94.839604ms - - id: 35 + duration: 76.425042ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1739,13 +1790,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"864d6f38-5a55-4b46-8715-e65121147de0"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"b36cdfba-a710-480d-aa4b-adc89012751b"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records method: PATCH response: @@ -1765,9 +1816,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1775,11 +1826,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1347109-2175-449b-ba4e-6a43773788ee + - 9ed93237-2a3a-46a2-aec3-6186c5199ce5 status: 200 OK code: 200 - duration: 225.475231ms - - id: 36 + duration: 199.41975ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1794,7 +1845,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1803,20 +1854,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 456 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"45a5b508-a44b-4036-a289-6e6a3db3fef0","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"8a565c2f-bb63-463f-8208-1cb94521a5bf","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 mail.scaleway.com.","id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986","name":"","priority":0,"ttl":300,"type":"MX"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"44ae3aac-b3b5-43d3-81ba-825fc4496bfc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"417deb4d-c9ee-4e3e-90de-d0c027c24bd5","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "456" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1824,50 +1875,97 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 315cd8b2-ebd8-4e68-989f-fed1c911ada1 + - 78d1b136-c493-4bd0-ba87-b767a4e1b844 status: 200 OK code: 200 - duration: 52.841432ms - - id: 37 + duration: 81.286459ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"1c418fcd-4fdb-4f0b-8312-8ad04c7f5986"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 299 + uncompressed: false + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"44ae3aac-b3b5-43d3-81ba-825fc4496bfc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"417deb4d-c9ee-4e3e-90de-d0c027c24bd5","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + headers: + Content-Length: + - "299" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 12 Mar 2025 10:07:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c531733-fe7d-4e6b-8c90-9cdaf263aa03 + status: 200 OK + code: 200 + duration: 66.641166ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 299 uncompressed: false - body: '{"records":[]}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"44ae3aac-b3b5-43d3-81ba-825fc4496bfc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"417deb4d-c9ee-4e3e-90de-d0c027c24bd5","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "14" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1875,11 +1973,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9ea494d-a9e9-4853-bf09-d92dae9ba1cc + - 247bea4a-4868-4bac-88a7-ee20e1fc96a0 status: 200 OK code: 200 - duration: 279.085994ms - - id: 38 + duration: 78.296917ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1894,8 +1992,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: proto: HTTP/2.0 @@ -1903,20 +2001,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 353 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"45a5b508-a44b-4036-a289-6e6a3db3fef0","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"8a565c2f-bb63-463f-8208-1cb94521a5bf","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "313" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1924,11 +2022,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a296992-9910-4fb6-87cf-893504e25bd3 + - 1d3bbfea-97fc-4641-8ecd-d01401ff2855 status: 200 OK code: 200 - duration: 62.14402ms - - id: 39 + duration: 71.747334ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1943,7 +2041,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1952,20 +2050,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1973,11 +2071,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3934c04-e3b5-4d5d-accf-00818d2b8dca + - 7c25df61-1245-438a-bfcc-1c773024efbe status: 200 OK code: 200 - duration: 48.630138ms - - id: 40 + duration: 63.212625ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1992,8 +2090,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: proto: HTTP/2.0 @@ -2001,20 +2099,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 353 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"45a5b508-a44b-4036-a289-6e6a3db3fef0","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"8a565c2f-bb63-463f-8208-1cb94521a5bf","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "313" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2022,11 +2120,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 620211ce-fef1-4305-892a-54ad00c01e6a + - 619a78a2-cb3c-4e6d-8436-997cd8da2a59 status: 200 OK code: 200 - duration: 76.221082ms - - id: 41 + duration: 69.194125ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2041,7 +2139,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -2050,20 +2148,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2071,11 +2169,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f4bfb48-ea78-4e92-8803-df9935fb45fb + - 60938d81-ae1c-41c3-b88a-b0ad911f3693 status: 200 OK code: 200 - duration: 62.041342ms - - id: 42 + duration: 76.560458ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2090,7 +2188,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -2099,20 +2197,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:09 GMT + - Wed, 12 Mar 2025 10:07:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2120,11 +2218,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b42ed22-4fb6-4714-b2a9-e11e5783d63b + - ba2395c3-48d0-4f14-9063-5b83551dafb2 status: 200 OK code: 200 - duration: 69.388864ms - - id: 43 + duration: 91.150042ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2139,7 +2237,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -2148,20 +2246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 353 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic2","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:09 GMT + - Wed, 12 Mar 2025 10:07:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2169,11 +2267,158 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a593b89-521a-406f-840a-61e0e77d4041 + - 2bee7071-c445-45a6-9ed7-036a63feef4d status: 200 OK code: 200 - duration: 58.04409ms - - id: 44 + duration: 81.949709ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 352 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' + headers: + Content-Length: + - "352" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 12 Mar 2025 10:07:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a86e42a0-4939-4fe6-9370-1594b5cbb4c6 + status: 200 OK + code: 200 + duration: 73.716125ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 352 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' + headers: + Content-Length: + - "352" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 12 Mar 2025 10:07:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa9d40c0-9792-46e6-9963-5865a221ebc2 + status: 200 OK + code: 200 + duration: 73.716208ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic2.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 352 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic2","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' + headers: + Content-Length: + - "352" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 12 Mar 2025 10:07:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1cd3e03-6f74-477a-8b6b-68f04797094d + status: 200 OK + code: 200 + duration: 79.28425ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2188,7 +2433,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -2208,9 +2453,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:09 GMT + - Wed, 12 Mar 2025 10:07:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2218,11 +2463,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 283f5b77-fd3f-44ce-8e3a-8a3b30dc7a40 + - ec3826cd-8412-4848-af41-d7bccd9e3f0f status: 200 OK code: 200 - duration: 270.777739ms - - id: 45 + duration: 140.150958ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2237,7 +2482,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -2257,9 +2502,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:09 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2267,11 +2512,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f71e60e-de60-48a1-9677-93cd4ecdbad2 + - 1956d641-aa7b-412e-99d9-d8d24e8f957d status: 200 OK code: 200 - duration: 282.165867ms - - id: 46 + duration: 223.400958ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 33 + uncompressed: false + body: '{"message":"subdomain not found"}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 12 Mar 2025 10:07:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7711fc70-3341-4393-9b33-cb80e1aa3818 + status: 403 Forbidden + code: 403 + duration: 172.022ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2286,7 +2580,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic2.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -2306,9 +2600,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:10 GMT + - Wed, 12 Mar 2025 10:07:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2316,7 +2610,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d52c736-60aa-41ba-928a-b711ea65a629 + - c4791393-1c7f-4d1c-a3db-011b1f6dd539 status: 403 Forbidden code: 403 - duration: 56.177486ms + duration: 70.639583ms diff --git a/internal/services/domain/testdata/domain-record-cname.cassette.yaml b/internal/services/domain/testdata/domain-record-cname.cassette.yaml index 299c014c54..0e27d76cdf 100644 --- a/internal/services/domain/testdata/domain-record-cname.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-cname.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 196 + content_length: 197 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"xxx.scw.cloud","name":"tf","priority":0,"ttl":3600,"type":"CNAME","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"add":{"records":[{"data":"xxx.scw.cloud.","name":"tf","priority":0,"ttl":3600,"type":"CNAME","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 195 + content_length: 149 uncompressed: false - body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}]}' + body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}]}' headers: Content-Length: - - "195" + - "149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:09:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cef76de2-ad09-4634-ab2b-e8740f4fb629 + - bd1927eb-464d-4a17-afac-4bd23c523b8f status: 200 OK code: 200 - duration: 792.516261ms + duration: 644.306625ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=tf&order_by=name_asc&type=CNAME method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:09:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97bba5db-4f35-4418-a32a-042b91fc6bbf + - d2a73bb7-ff1c-498a-b908-50536edbca6d status: 200 OK code: 200 - duration: 69.581665ms + duration: 88.19575ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=tf&order_by=name_asc&page=1&type=CNAME method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:09:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f62ebb8-fc09-43a5-87e1-77121ff08759 + - df85564f-7d6d-4c1b-92e1-d311d51dffa8 status: 200 OK code: 200 - duration: 79.771079ms + duration: 85.674333ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=08bcc82f-5d56-416b-bdec-47132cc3fd60&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=9db61b0f-27da-4fa7-a440-329779ceb2de&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:09:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 066ae2d8-a388-4d84-8f8d-4ce2ac964587 + - 850925ca-57be-4a3d-a850-8ec5509ff5c7 status: 200 OK code: 200 - duration: 64.064377ms + duration: 83.622542ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:02Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:09:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c3a6680-90aa-4be1-9851-381484b6c2af + - e105e5a2-6294-4fcf-af4a-8b81d192b063 status: 200 OK code: 200 - duration: 65.877086ms + duration: 79.422916ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 496 + content_length: 435 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"60127f61-8626-4b1f-ad0d-58114ab559a5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7ff38e32-3586-4862-a1b3-041c5ed89132","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"xxx.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"36e086cd-ce61-4b40-9620-b51c2ee90a9a","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"c96463df-6ca7-478a-8e8e-d69a03512ff1","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"xxx.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":3}' headers: Content-Length: - - "496" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:09:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99bc7099-959f-4f78-9f65-cb9682983017 + - 29cd2675-ddf7-47a6-ac66-0383d3c71227 status: 200 OK code: 200 - duration: 69.653153ms + duration: 75.352917ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=08bcc82f-5d56-416b-bdec-47132cc3fd60&name=tf&order_by=name_asc&page=1&type=CNAME + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=9db61b0f-27da-4fa7-a440-329779ceb2de&name=tf&order_by=name_asc&page=1&type=CNAME method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:09:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b594d28-441c-4dbf-8556-9e47cbc9847a + - 217e157c-6b78-4f25-82c8-0909871836dc status: 200 OK code: 200 - duration: 65.492552ms + duration: 300.681833ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:02Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:09:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fc1aba2-e962-4404-974b-8b042e0d6d06 + - ae56e4f8-7daf-4659-b104-16f6397c4c7f status: 200 OK code: 200 - duration: 65.762051ms + duration: 76.9965ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=08bcc82f-5d56-416b-bdec-47132cc3fd60&name=tf&order_by=name_asc&page=1&type=CNAME + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=9db61b0f-27da-4fa7-a440-329779ceb2de&name=tf&order_by=name_asc&page=1&type=CNAME method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"xxx.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:09:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d59a4e2-29bb-45e2-93f1-e6fab1f08fb5 + - bad79c67-da60-45d7-8ca7-910d0ba3fe7d status: 200 OK code: 200 - duration: 72.081306ms + duration: 79.801458ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:02Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:09:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,28 +489,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07c2cc3f-ab4d-4009-9fdf-4cb902b869e3 + - 440b1757-a36e-424c-9c9f-134a46f66080 status: 200 OK code: 200 - duration: 58.152595ms + duration: 76.532209ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 240 + content_length: 241 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","records":[{"data":"yyy.scw.cloud","name":"tf","priority":0,"ttl":3600,"type":"CNAME","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"9db61b0f-27da-4fa7-a440-329779ceb2de","records":[{"data":"yyy.scw.cloud.","name":"tf","priority":0,"ttl":3600,"type":"CNAME","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records method: PATCH response: @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 195 + content_length: 149 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}]}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}]}' headers: Content-Length: - - "195" + - "149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:09:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50d616fd-02f4-4175-bad4-d90e8e86742a + - 149b0835-841a-4bbd-a8e2-703a5fdeb010 status: 200 OK code: 200 - duration: 111.279601ms + duration: 115.634833ms - id: 11 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=tf&order_by=name_asc&type=CNAME method: GET response: @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:09:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 081624d1-a84a-478d-b941-580665daf9ac + - c9ecb38c-fd4a-4e93-998c-438e80c1c9d2 status: 200 OK code: 200 - duration: 73.396825ms + duration: 76.01075ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=08bcc82f-5d56-416b-bdec-47132cc3fd60&name=tf&order_by=name_asc&page=1&type=CNAME + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=9db61b0f-27da-4fa7-a440-329779ceb2de&name=tf&order_by=name_asc&page=1&type=CNAME method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:09:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d364203-a464-427b-9b19-c2dd9132ead3 + - b8a17090-e7f3-440c-9177-bbfa97a3dfac status: 200 OK code: 200 - duration: 55.706725ms + duration: 81.254708ms - id: 13 request: proto: HTTP/1.1 @@ -657,7 +657,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:06Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:09:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a10e89f2-c44d-44a3-91f8-553ae88ac51f + - 060a8caf-fec3-40ef-a5d0-92e6a1db19a9 status: 200 OK code: 200 - duration: 54.618013ms + duration: 72.2715ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 496 + content_length: 435 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"60127f61-8626-4b1f-ad0d-58114ab559a5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7ff38e32-3586-4862-a1b3-041c5ed89132","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"36e086cd-ce61-4b40-9620-b51c2ee90a9a","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"c96463df-6ca7-478a-8e8e-d69a03512ff1","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":3}' headers: Content-Length: - - "496" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:09:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af3757e7-9458-4d2d-b154-34311384de4d + - 34c2e520-c70b-4e1e-b0ef-cd10197cd219 status: 200 OK code: 200 - duration: 74.466697ms + duration: 72.690334ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=08bcc82f-5d56-416b-bdec-47132cc3fd60&name=tf&order_by=name_asc&page=1&type=CNAME + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=9db61b0f-27da-4fa7-a440-329779ceb2de&name=tf&order_by=name_asc&page=1&type=CNAME method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:09:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70d51abe-b88f-4a0f-bc9a-5f966bda7bec + - d003bfc8-9ab6-457f-a419-ba0448f27801 status: 200 OK code: 200 - duration: 57.459184ms + duration: 161.438625ms - id: 16 request: proto: HTTP/1.1 @@ -804,7 +804,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:07Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:09:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f40128c6-e907-4ef5-83e5-8a0111d05898 + - 8d8f66c0-cb55-4a94-b0ec-cc48b42342f7 status: 200 OK code: 200 - duration: 74.575762ms + duration: 80.48825ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=08bcc82f-5d56-416b-bdec-47132cc3fd60&name=tf&order_by=name_asc&page=1&type=CNAME + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=9db61b0f-27da-4fa7-a440-329779ceb2de&name=tf&order_by=name_asc&page=1&type=CNAME method: GET response: proto: HTTP/2.0 @@ -862,20 +862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 212 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":0,"ttl":3600,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "212" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:09:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06834098-d740-4bdf-bc22-b69601aad612 + - 45b86c6d-a7cc-46ff-9d24-8de5d33fc18a status: 200 OK code: 200 - duration: 61.076029ms + duration: 98.380333ms - id: 18 request: proto: HTTP/1.1 @@ -902,7 +902,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -911,20 +911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:07Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:09:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,28 +932,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 716ca1b1-24a8-40ea-9a14-6e4ff1e7f41b + - f432ac59-6e11-4f80-a418-4b87ca1a6247 status: 200 OK code: 200 - duration: 55.100048ms + duration: 71.492834ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 242 + content_length: 243 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","records":[{"data":"yyy.scw.cloud","name":"tf","priority":10,"ttl":43200,"type":"CNAME","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"9db61b0f-27da-4fa7-a440-329779ceb2de","records":[{"data":"yyy.scw.cloud.","name":"tf","priority":10,"ttl":43200,"type":"CNAME","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records method: PATCH response: @@ -962,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 197 + content_length: 151 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}]}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}]}' headers: Content-Length: - - "197" + - "151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:09:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daf1c97f-4524-48e1-b21b-e9d10b09eee4 + - f876b7e4-b32e-4fcf-a5a7-6e224821f409 status: 200 OK code: 200 - duration: 109.910121ms + duration: 117.733666ms - id: 20 request: proto: HTTP/1.1 @@ -1002,7 +1002,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=tf&order_by=name_asc&type=CNAME method: GET response: @@ -1011,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 214 + content_length: 167 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "214" + - "167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:09:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 742b559a-67c6-4177-8aec-235584739e00 + - bffa9846-dcd3-4190-bdcd-df338ff9db01 status: 200 OK code: 200 - duration: 68.046563ms + duration: 70.58325ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=08bcc82f-5d56-416b-bdec-47132cc3fd60&name=tf&order_by=name_asc&page=1&type=CNAME + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=9db61b0f-27da-4fa7-a440-329779ceb2de&name=tf&order_by=name_asc&page=1&type=CNAME method: GET response: proto: HTTP/2.0 @@ -1060,20 +1060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 214 + content_length: 167 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "214" + - "167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:09:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0d9d5fc-00ae-4702-a8f8-cf5e179e3991 + - 7eb64802-662e-4899-af05-5ad678c9dda5 status: 200 OK code: 200 - duration: 64.600208ms + duration: 73.362583ms - id: 22 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1109,20 +1109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:06Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:09Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:09:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5becbcaf-cd19-4e25-aa64-8fed5166c3e4 + - f844c18c-2315-4a09-840b-eae5af1f8a9e status: 200 OK code: 200 - duration: 59.873573ms + duration: 84.146417ms - id: 23 request: proto: HTTP/1.1 @@ -1149,7 +1149,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1158,20 +1158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 498 + content_length: 437 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"60127f61-8626-4b1f-ad0d-58114ab559a5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7ff38e32-3586-4862-a1b3-041c5ed89132","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"36e086cd-ce61-4b40-9620-b51c2ee90a9a","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"c96463df-6ca7-478a-8e8e-d69a03512ff1","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}],"total_count":3}' headers: Content-Length: - - "498" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:07 GMT + - Wed, 12 Mar 2025 10:09:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,10 +1179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc952f3a-e058-4c73-a358-61cd6253f976 + - aa24a9cf-305d-4eb3-b7c4-653eb3660177 status: 200 OK code: 200 - duration: 66.002112ms + duration: 81.644208ms - id: 24 request: proto: HTTP/1.1 @@ -1198,8 +1198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=08bcc82f-5d56-416b-bdec-47132cc3fd60&name=tf&order_by=name_asc&page=1&type=CNAME + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?id=9db61b0f-27da-4fa7-a440-329779ceb2de&name=tf&order_by=name_asc&page=1&type=CNAME method: GET response: proto: HTTP/2.0 @@ -1207,20 +1207,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 214 + content_length: 167 uncompressed: false - body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.test-basic-cname.scaleway-terraform.com.","id":"08bcc82f-5d56-416b-bdec-47132cc3fd60","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"yyy.scw.cloud.","id":"9db61b0f-27da-4fa7-a440-329779ceb2de","name":"tf","priority":10,"ttl":43200,"type":"CNAME"}],"total_count":1}' headers: Content-Length: - - "214" + - "167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:07 GMT + - Wed, 12 Mar 2025 10:09:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a1364fe-7300-405f-901b-d087986582ce + - e762c07e-4326-4897-8b21-36a8582421f5 status: 200 OK code: 200 - duration: 56.838902ms + duration: 84.088209ms - id: 25 request: proto: HTTP/1.1 @@ -1247,7 +1247,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1256,20 +1256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:06Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:09Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:07 GMT + - Wed, 12 Mar 2025 10:09:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e47e04b-a389-42ee-9c5b-cb07f8e18045 + - f679ecfb-15f6-417a-8e53-fe9aa7a4382b status: 200 OK code: 200 - duration: 71.552233ms + duration: 84.240125ms - id: 26 request: proto: HTTP/1.1 @@ -1292,13 +1292,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"08bcc82f-5d56-416b-bdec-47132cc3fd60"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"9db61b0f-27da-4fa7-a440-329779ceb2de"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records method: PATCH response: @@ -1318,9 +1318,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:08 GMT + - Wed, 12 Mar 2025 10:09:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,10 +1328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71541ae1-b50f-45f3-9980-e11659d76f6f + - 6447261d-80ec-4832-8a33-5b017fd349d2 status: 200 OK code: 200 - duration: 124.760551ms + duration: 95.250625ms - id: 27 request: proto: HTTP/1.1 @@ -1347,7 +1347,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1356,20 +1356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"60127f61-8626-4b1f-ad0d-58114ab559a5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7ff38e32-3586-4862-a1b3-041c5ed89132","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"36e086cd-ce61-4b40-9620-b51c2ee90a9a","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"c96463df-6ca7-478a-8e8e-d69a03512ff1","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:08 GMT + - Wed, 12 Mar 2025 10:09:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd60d53a-a692-4e32-b118-0e36ae381c85 + - 3a4a05d6-152c-4425-a5c8-d4ef06cf4fe1 status: 200 OK code: 200 - duration: 63.302551ms + duration: 73.445ms - id: 28 request: proto: HTTP/1.1 @@ -1396,7 +1396,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1405,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:08Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:12Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:08 GMT + - Wed, 12 Mar 2025 10:09:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,10 +1426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db69742b-51be-40a6-b495-d19b952b386b + - 0516b642-5254-48aa-9627-a66d193253c9 status: 200 OK code: 200 - duration: 77.335505ms + duration: 76.175833ms - id: 29 request: proto: HTTP/1.1 @@ -1445,7 +1445,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-basic-cname.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1454,20 +1454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic-cname","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-basic-cname","updated_at":"2025-03-12T10:09:17Z"}],"total_count":1}' headers: Content-Length: - - "369" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:09:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9b9c3c2-b40c-43e0-9b19-71517c072d71 + - 0308c2f7-56cd-47d9-bc9f-4703efe25335 status: 200 OK code: 200 - duration: 64.404386ms + duration: 248.9335ms - id: 30 request: proto: HTTP/1.1 @@ -1494,7 +1494,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -1514,9 +1514,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:09:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9aa3712f-fa4b-4a2e-bcbe-4a0d4f7073db + - cc13f5cb-fa1f-4c7b-a280-0cba3c1bb935 status: 200 OK code: 200 - duration: 209.240547ms + duration: 293.056416ms - id: 31 request: proto: HTTP/1.1 @@ -1543,7 +1543,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-basic-cname.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1563,9 +1563,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:13 GMT + - Wed, 12 Mar 2025 10:09:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,7 +1573,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 734e8df6-b3e1-424f-94c9-5fa2db615bcd + - c8bc43c3-01ff-456f-adc8-6c66fc4e12c3 status: 403 Forbidden code: 403 - duration: 178.623005ms + duration: 79.81125ms diff --git a/internal/services/domain/testdata/domain-record-geo-ip.cassette.yaml b/internal/services/domain/testdata/domain-record-geo-ip.cassette.yaml index 2f1078492b..9e80c3c7f5 100644 --- a/internal/services/domain/testdata/domain-record-geo-ip.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-geo-ip.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 311 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "324" + - "311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ba95845-ddce-4a4e-9d44-1b852587f60f + - f6cd89ba-835e-4de8-9771-0091c34dccad status: 200 OK code: 200 - duration: 727.407689ms + duration: 606.904083ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?name=tf_geo_ip&order_by=name_asc&type=A method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "341" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 184d69d5-9d9d-4ea7-9b6e-7d70b7f2af3b + - 03fc9f15-45be-4807-9343-8d6e8c33b753 status: 200 OK code: 200 - duration: 61.040416ms + duration: 89.123542ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?name=tf_geo_ip&order_by=name_asc&page=1&type=A method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "341" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c53a7998-5d5f-4cc8-a7f9-b308917629ee + - bace6c7b-cbe0-44d9-a8a6-340706139de3 status: 200 OK code: 200 - duration: 82.275014ms + duration: 66.507083ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=9574544c-761f-44b4-8408-9126155aaf0c&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=2815f068-e2b8-4fa4-98c4-4c458f8baa63&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "341" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43fcd02f-1a11-411f-bd0f-b4036e1ad9da + - e0741117-11e7-49d6-b069-f87c5bfc6526 status: 200 OK code: 200 - duration: 69.475522ms + duration: 86.659667ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-geoip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f8a1563-d3a7-46c8-9419-3e018a43c2e3 + - e8e18219-d778-4c5d-9fe4-2e56ea97121a status: 200 OK code: 200 - duration: 86.1216ms + duration: 71.877667ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 625 + content_length: 597 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"bb29ecab-91ce-476c-aca2-fba0561b9c1f","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"d58520aa-ebaf-4b92-891a-c0ca281671c3","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"c82d8d55-2263-4e3d-95d1-36dfe1bc7db8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7f4e1791-5c15-4563-9a7b-c4e0788c9da9","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "625" + - "597" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c72eecdf-588b-429a-a013-af0d32902023 + - 0a8ec2d3-098b-4429-96aa-d4746d981bd3 status: 200 OK code: 200 - duration: 83.339495ms + duration: 94.785208ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=9574544c-761f-44b4-8408-9126155aaf0c&name=tf_geo_ip&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=2815f068-e2b8-4fa4-98c4-4c458f8baa63&name=tf_geo_ip&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "341" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6ca1952-5625-42de-8f07-84fc4e86811c + - 184ca7c4-4bb6-4605-9cdb-6c5c01ec77cc status: 200 OK code: 200 - duration: 75.053473ms + duration: 77.770084ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-geoip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6932acad-497a-46b4-a695-485d2e705bca + - 33cdaab2-ab2f-4367-9bab-3ada657e8da7 status: 200 OK code: 200 - duration: 70.053577ms + duration: 71.344041ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=9574544c-761f-44b4-8408-9126155aaf0c&name=tf_geo_ip&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=2815f068-e2b8-4fa4-98c4-4c458f8baa63&name=tf_geo_ip&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU"],"countries":["FR"],"data":"1.2.3.4"},{"continents":["NA"],"countries":[],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "341" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ea15276-6acd-402d-9ae3-4a86b7f49818 + - 053ee727-2677-4040-b06a-49980bcf1e79 status: 200 OK code: 200 - duration: 79.84113ms + duration: 75.702417ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-geoip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af682149-fded-4be7-94be-f5396f00226c + - 76c97629-d8a8-4db6-a784-115d761858a2 status: 200 OK code: 200 - duration: 59.585202ms + duration: 88.396542ms - id: 10 request: proto: HTTP/1.1 @@ -504,13 +504,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"9574544c-761f-44b4-8408-9126155aaf0c","records":[{"data":"127.0.0.2","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A","comment":null,"geo_ip_config":{"matches":[{"countries":["FR","AE"],"continents":["EU","AS"],"data":"1.2.3.4"},{"countries":["CI"],"continents":[],"data":"1.2.3.5"}],"default":"127.0.0.2"},"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","records":[{"data":"127.0.0.2","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A","comment":null,"geo_ip_config":{"matches":[{"countries":["FR","AE"],"continents":["EU","AS"],"data":"1.2.3.4"},{"countries":["CI"],"continents":[],"data":"1.2.3.5"}],"default":"127.0.0.2"},"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records method: PATCH response: @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 336 + content_length: 321 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "336" + - "321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6964f31-38e0-438b-9cfc-f1443d206335 + - 9fc6359a-9953-421b-8e99-0e2f2d5dd9da status: 200 OK code: 200 - duration: 105.454716ms + duration: 109.356ms - id: 11 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?name=tf_geo_ip&order_by=name_asc&type=A method: GET response: @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 337 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "353" + - "337" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad5758b9-0c44-4a8f-9186-08a63e2787fc + - 9a696fe2-953f-4b10-9198-61e2de2875ca status: 200 OK code: 200 - duration: 60.995315ms + duration: 77.810083ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=9574544c-761f-44b4-8408-9126155aaf0c&name=tf_geo_ip&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=2815f068-e2b8-4fa4-98c4-4c458f8baa63&name=tf_geo_ip&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 337 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "353" + - "337" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fd66fab-4b46-45bb-ae59-3a0c8f8729c3 + - b2576e37-b975-4853-b825-592f2b6005cf status: 200 OK code: 200 - duration: 53.895997ms + duration: 80.318625ms - id: 13 request: proto: HTTP/1.1 @@ -657,7 +657,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-geoip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09ecb8ed-71be-4526-95fb-478fe69717a9 + - 33aa9048-906f-41b2-ac98-8ab97e85f299 status: 200 OK code: 200 - duration: 50.394736ms + duration: 78.557ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 637 + content_length: 607 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"bb29ecab-91ce-476c-aca2-fba0561b9c1f","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"d58520aa-ebaf-4b92-891a-c0ca281671c3","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"c82d8d55-2263-4e3d-95d1-36dfe1bc7db8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7f4e1791-5c15-4563-9a7b-c4e0788c9da9","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "637" + - "607" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df6d128b-c030-45f0-baf6-78704b5a9e3c + - 713c9edb-788b-4991-80eb-4c444594855c status: 200 OK code: 200 - duration: 57.286155ms + duration: 83.34725ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=9574544c-761f-44b4-8408-9126155aaf0c&name=tf_geo_ip&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?id=2815f068-e2b8-4fa4-98c4-4c458f8baa63&name=tf_geo_ip&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 337 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"9574544c-761f-44b4-8408-9126155aaf0c","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.2","geo_ip_config":{"default":"127.0.0.2","matches":[{"continents":["EU","AS"],"countries":["FR","AE"],"data":"1.2.3.4"},{"continents":[],"countries":["CI"],"data":"1.2.3.5"}]},"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63","name":"tf_geo_ip","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "353" + - "337" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 303737d8-62df-4867-861b-49b119c083b7 + - 2481de5e-9615-4e9f-afa6-da0b46cf4268 status: 200 OK code: 200 - duration: 64.507319ms + duration: 82.027375ms - id: 16 request: proto: HTTP/1.1 @@ -804,7 +804,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-geoip.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b54ef86-2ec8-4df9-a57d-88c972635b13 + - 1ef89a05-3ecd-46ee-b671-401b02906348 status: 200 OK code: 200 - duration: 55.527142ms + duration: 74.695042ms - id: 17 request: proto: HTTP/1.1 @@ -849,13 +849,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"9574544c-761f-44b4-8408-9126155aaf0c"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"2815f068-e2b8-4fa4-98c4-4c458f8baa63"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records method: PATCH response: @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5c8e9f1-b5d5-4151-9cba-d17614ae1ab1 + - 9fed9ace-494e-4cbf-855e-cce55d829643 status: 200 OK code: 200 - duration: 125.778643ms + duration: 103.234459ms - id: 18 request: proto: HTTP/1.1 @@ -904,7 +904,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -913,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"bb29ecab-91ce-476c-aca2-fba0561b9c1f","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"d58520aa-ebaf-4b92-891a-c0ca281671c3","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"c82d8d55-2263-4e3d-95d1-36dfe1bc7db8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7f4e1791-5c15-4563-9a7b-c4e0788c9da9","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0335cde0-6c20-4515-b0cc-21cefdca3780 + - 8e815225-7fb2-4363-a13a-93029d452968 status: 200 OK code: 200 - duration: 93.503853ms + duration: 82.904708ms - id: 19 request: proto: HTTP/1.1 @@ -953,7 +953,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-geoip.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -962,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 352 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2024-06-25T13:27:06Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-geoip","updated_at":"2025-03-12T10:07:40Z"}],"total_count":1}' headers: Content-Length: - - "364" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3af6e848-b31e-48c0-83e1-1249dae3b6d4 + - bf9ccc55-38f2-4d67-93fa-415e8a5fa9a5 status: 200 OK code: 200 - duration: 50.578349ms + duration: 137.407584ms - id: 20 request: proto: HTTP/1.1 @@ -1002,7 +1002,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-geoip.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1011,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-geoip","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-geoip","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bcc4a5a-04f9-43f7-887e-feaffe44f17d + - d1636313-8a01-41a5-b955-cb06816979f5 status: 200 OK code: 200 - duration: 56.820459ms + duration: 92.5275ms - id: 21 request: proto: HTTP/1.1 @@ -1051,7 +1051,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -1071,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94d4b0ad-be30-44b6-96df-c75f6b750f3b + - 8a78bf0b-9990-4ac5-acfe-ceab3a737f12 status: 200 OK code: 200 - duration: 245.512938ms + duration: 138.584125ms - id: 22 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-geoip.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1120,9 +1120,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,7 +1130,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e597302-58dc-40a9-85d5-b7a13cbdb470 + - ec6614b8-20a4-45e4-9c1a-eaefb2ba7e46 status: 403 Forbidden code: 403 - duration: 65.265663ms + duration: 76.883292ms diff --git a/internal/services/domain/testdata/domain-record-http-service.cassette.yaml b/internal/services/domain/testdata/domain-record-http-service.cassette.yaml index d3c9f58471..2263326fff 100644 --- a/internal/services/domain/testdata/domain-record-http-service.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-http-service.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 323 + content_length: 311 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "323" + - "311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 457e4bd2-13b2-491e-98bc-1f94c536b6a2 + - 72855073-6a8f-4c1c-a521-e0f43be51f0d status: 200 OK code: 200 - duration: 767.844029ms + duration: 698.336208ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?name=tf_http_service&order_by=name_asc&type=A method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 340 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "340" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6d98f33-4a2b-4e05-9433-15e8b52305d5 + - af17ff6e-eee7-47fb-814a-7fe7e75aa0aa status: 200 OK code: 200 - duration: 76.498591ms + duration: 85.724125ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?name=tf_http_service&order_by=name_asc&page=1&type=A method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 340 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "340" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53a0c619-2e5a-4e73-b8d7-8f0cccefe065 + - 5ee098dd-0804-4ee8-bb8b-5fa03d387c21 status: 200 OK code: 200 - duration: 49.94637ms + duration: 82.223958ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=ae4c8321-478e-4b38-b9b4-d2c552b15bc9&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=40edab71-efc6-4db0-ba77-0af3683c7d41&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 340 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "340" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c7a8270-baa8-4119-8e19-54da38e05db8 + - 82a0dadc-115d-4529-89bd-23f4714dcf90 status: 200 OK code: 200 - duration: 72.689997ms + duration: 85.466541ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-httpservice.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c369cf-618b-4767-9e6e-1aa5dd309090 + - 893b831d-6cd6-40e7-9593-7101a6001e8e status: 200 OK code: 200 - duration: 60.828194ms + duration: 82.033083ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 624 + content_length: 597 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"f58292b4-a2f9-4e3f-a139-294a706e6830","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"9a2742ee-01c1-4afd-998b-9b2bffc8b9e8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"95980464-f7b2-4678-89c7-edd3bdbf9926","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"3967b4a5-f99f-44be-a41e-b6d4cb6fd75f","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "624" + - "597" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 360a8dd1-1114-4e52-a9de-00b3c90d2d24 + - 1b8162f3-9080-4022-926a-9bb3cb381903 status: 200 OK code: 200 - duration: 74.854357ms + duration: 178.265ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=ae4c8321-478e-4b38-b9b4-d2c552b15bc9&name=tf_http_service&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=40edab71-efc6-4db0-ba77-0af3683c7d41&name=tf_http_service&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 340 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "340" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e22eb60-1c61-4654-af38-023c96c9ae1f + - 39df3ec2-3a0e-4e96-a77b-6e45d54b9c05 status: 200 OK code: 200 - duration: 78.786196ms + duration: 95.791292ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-httpservice.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 962029d1-a383-4fad-83bd-24fbe67e5ee1 + - 666cb566-c286-46c5-a3a6-6b5d259dadd8 status: 200 OK code: 200 - duration: 71.978441ms + duration: 99.923584ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=ae4c8321-478e-4b38-b9b4-d2c552b15bc9&name=tf_http_service&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=40edab71-efc6-4db0-ba77-0af3683c7d41&name=tf_http_service&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 340 + content_length: 327 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["1.2.3.4","4.3.2.1"],"must_contain":"up","strategy":"hashed","url":"http://mywebsite.com/health","user_agent":"scw_service_up"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "340" + - "327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f658533-c5ac-4429-9e94-dca50976f546 + - 44bae756-f2e6-421e-b89a-8f551f391c76 status: 200 OK code: 200 - duration: 68.878645ms + duration: 78.446583ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-httpservice.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a792eda0-1d6d-476f-8486-57fc25257952 + - ae9e197a-9c40-4552-9e5a-91fb2be93c99 status: 200 OK code: 200 - duration: 87.965205ms + duration: 75.532459ms - id: 10 request: proto: HTTP/1.1 @@ -504,13 +504,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","records":[{"data":"127.0.0.3","name":"tf_http_service","priority":0,"ttl":3600,"type":"A","comment":null,"http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online","strategy":"random"},"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","records":[{"data":"127.0.0.3","name":"tf_http_service","priority":0,"ttl":3600,"type":"A","comment":null,"http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online","strategy":"random"},"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records method: PATCH response: @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 314 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "325" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91fe305c-d070-4cac-a5c4-0f87f4b83ab3 + - 96786a5e-7d21-4916-b9eb-b6d9817900c9 status: 200 OK code: 200 - duration: 129.457139ms + duration: 121.632958ms - id: 11 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?name=tf_http_service&order_by=name_asc&type=A method: GET response: @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 342 + content_length: 330 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "342" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27482ca6-be34-4b88-9fe2-545452d93885 + - 033bf0c8-66c7-43ae-9851-df1b9205fb4a status: 200 OK code: 200 - duration: 78.949504ms + duration: 75.821708ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=ae4c8321-478e-4b38-b9b4-d2c552b15bc9&name=tf_http_service&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=40edab71-efc6-4db0-ba77-0af3683c7d41&name=tf_http_service&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 342 + content_length: 330 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "342" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6fca0b1-fc69-4c1c-9ea9-cf043d611f90 + - 0f3db835-6f33-46f4-a998-3fe42dd12a07 status: 200 OK code: 200 - duration: 60.654731ms + duration: 71.87875ms - id: 13 request: proto: HTTP/1.1 @@ -657,7 +657,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-httpservice.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3184fd6b-e2a8-46ad-8545-4477ea2d786f + - d57ec65d-92a9-4d5d-bb87-beed0abde2d2 status: 200 OK code: 200 - duration: 53.396765ms + duration: 95.226291ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 626 + content_length: 600 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"f58292b4-a2f9-4e3f-a139-294a706e6830","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"9a2742ee-01c1-4afd-998b-9b2bffc8b9e8","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"95980464-f7b2-4678-89c7-edd3bdbf9926","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"3967b4a5-f99f-44be-a41e-b6d4cb6fd75f","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":3}' headers: Content-Length: - - "626" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ccc6fa9-8a49-42b5-9b2e-02e75810936c + - d09a3ed2-454a-4438-8bee-a5fe51d681c0 status: 200 OK code: 200 - duration: 67.395874ms + duration: 82.708084ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=ae4c8321-478e-4b38-b9b4-d2c552b15bc9&name=tf_http_service&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?id=40edab71-efc6-4db0-ba77-0af3683c7d41&name=tf_http_service&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 342 + content_length: 330 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.3","http_service_config":{"ips":["5.6.7.8"],"must_contain":"online","strategy":"random","url":"http://mywebsite.com/healthcheck","user_agent":"scw_service_online"},"id":"40edab71-efc6-4db0-ba77-0af3683c7d41","name":"tf_http_service","priority":0,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "342" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8108d38f-3259-4e0a-b88b-76163b2d31a7 + - 9d69a4a9-e3ba-4513-8094-cb08cfd99ba9 status: 200 OK code: 200 - duration: 79.081328ms + duration: 76.920209ms - id: 16 request: proto: HTTP/1.1 @@ -804,7 +804,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-httpservice.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7dfd620-5260-4ccd-9fb3-8de6c96bc45b + - 9c160863-9a60-473e-98b0-3e170f07ca36 status: 200 OK code: 200 - duration: 51.113275ms + duration: 89.550333ms - id: 17 request: proto: HTTP/1.1 @@ -849,13 +849,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"ae4c8321-478e-4b38-b9b4-d2c552b15bc9"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"40edab71-efc6-4db0-ba77-0af3683c7d41"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records method: PATCH response: @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 230d04e7-2bec-4ae1-bacc-39e7f67036d5 + - 31a09dff-90d6-46b3-ad83-76e0cc758be8 status: 200 OK code: 200 - duration: 102.853557ms + duration: 100.447292ms - id: 18 request: proto: HTTP/1.1 @@ -904,7 +904,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -913,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"f58292b4-a2f9-4e3f-a139-294a706e6830","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"9a2742ee-01c1-4afd-998b-9b2bffc8b9e8","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"95980464-f7b2-4678-89c7-edd3bdbf9926","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"3967b4a5-f99f-44be-a41e-b6d4cb6fd75f","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30e8d520-77d2-4ddc-8162-985888fa1180 + - 098748af-bc92-4dd4-814d-ac9038752475 status: 200 OK code: 200 - duration: 60.970506ms + duration: 82.459666ms - id: 19 request: proto: HTTP/1.1 @@ -953,7 +953,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-httpservice.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -962,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 358 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2024-06-25T13:27:06Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-httpservice","updated_at":"2025-03-12T10:07:41Z"}],"total_count":1}' headers: Content-Length: - - "370" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ec94a69-6581-4784-846a-8b63b312fc02 + - 17aea1a0-fe1c-4631-bb9c-793827e48492 status: 200 OK code: 200 - duration: 77.422541ms + duration: 79.61075ms - id: 20 request: proto: HTTP/1.1 @@ -1002,7 +1002,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-httpservice.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1011,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-httpservice","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-httpservice","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "369" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e68c626-c650-44fb-90f6-d6aee74dd2b9 + - a94dc55f-9084-4899-8703-65ebaeccd6ef status: 200 OK code: 200 - duration: 69.642062ms + duration: 88.341917ms - id: 21 request: proto: HTTP/1.1 @@ -1051,7 +1051,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -1071,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1450724b-73b8-46c9-9119-72cbbef049c6 + - 9a00d6e5-291f-4d59-9ab0-fea58e82ee5a status: 200 OK code: 200 - duration: 200.395239ms + duration: 140.389ms - id: 22 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-httpservice.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1120,9 +1120,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,7 +1130,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98988a1f-9932-4ddb-b987-12390402edfd + - f34a0648-6c0b-47e7-83d2-fd4164463202 status: 403 Forbidden code: 403 - duration: 81.023949ms + duration: 72.974334ms diff --git a/internal/services/domain/testdata/domain-record-srv-zone.cassette.yaml b/internal/services/domain/testdata/domain-record-srv-zone.cassette.yaml index b367bc262b..35705f901e 100644 --- a/internal/services/domain/testdata/domain-record-srv-zone.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-srv-zone.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 194 + content_length: 188 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"a976cd16-ed5e-4976-9bab-9726ea2dd97a","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}]}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"e485ea00-0d31-440e-9140-f2944caff199","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}]}' headers: Content-Length: - - "194" + - "188" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d2955ed-783b-4737-89d1-53e21eca5a3e + - 1f6f309a-e015-4f48-b55b-fef8b4c20380 status: 200 OK code: 200 - duration: 728.267759ms + duration: 606.68025ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?name=_proxy-preproduction._tcp&order_by=name_asc&type=SRV method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 204 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"a976cd16-ed5e-4976-9bab-9726ea2dd97a","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"e485ea00-0d31-440e-9140-f2944caff199","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "211" + - "204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38e1978a-d2b3-42f0-8790-7835bc2ac6e5 + - 9b666ad0-cc36-4faf-a139-a3b2539975db status: 200 OK code: 200 - duration: 87.018821ms + duration: 117.473916ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?name=_proxy-preproduction._tcp&order_by=name_asc&page=1&type=SRV method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 204 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"a976cd16-ed5e-4976-9bab-9726ea2dd97a","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"e485ea00-0d31-440e-9140-f2944caff199","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "211" + - "204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f803d285-9f7b-44e6-9e29-a99c7d2e37cf + - 5f53bc1f-fec9-49ad-83a4-17be2c7c388a status: 200 OK code: 200 - duration: 70.639662ms + duration: 70.277625ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?id=a976cd16-ed5e-4976-9bab-9726ea2dd97a&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?id=e485ea00-0d31-440e-9140-f2944caff199&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 204 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"a976cd16-ed5e-4976-9bab-9726ea2dd97a","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"e485ea00-0d31-440e-9140-f2944caff199","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "211" + - "204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c54abf9-38ff-4abd-98f6-3d76a7ad8542 + - f4abdc61-4eac-4104-a500-6bc7f6b0d7b3 status: 200 OK code: 200 - duration: 78.811056ms + duration: 71.808041ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33b974b3-187e-46d9-8117-f64042cf90cf + - 0da36d4b-9eac-451d-a8ec-d442e59fa543 status: 200 OK code: 200 - duration: 72.116236ms + duration: 70.718666ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 495 + content_length: 474 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"8c372f96-14e1-4d30-ad91-3ee472952d94","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"984195af-63ab-48d5-84e0-638489429d92","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"a976cd16-ed5e-4976-9bab-9726ea2dd97a","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"300f91dc-4aeb-4af2-bdd5-799e45de3fdc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"2b40200b-fcab-49f0-a00c-157e876a682a","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"e485ea00-0d31-440e-9140-f2944caff199","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":3}' headers: Content-Length: - - "495" + - "474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da113106-5162-459d-9c55-42978c5a24df + - 1da62d82-6fa1-4090-87c7-371e034cd3ed status: 200 OK code: 200 - duration: 81.955426ms + duration: 66.719167ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?id=a976cd16-ed5e-4976-9bab-9726ea2dd97a&name=_proxy-preproduction._tcp&order_by=name_asc&page=1&type=SRV + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?id=e485ea00-0d31-440e-9140-f2944caff199&name=_proxy-preproduction._tcp&order_by=name_asc&page=1&type=SRV method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 204 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"a976cd16-ed5e-4976-9bab-9726ea2dd97a","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"e485ea00-0d31-440e-9140-f2944caff199","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "211" + - "204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c3bd5ab-1a8b-48c5-afaa-d47ebbc7a6cc + - bf329efa-88ec-4c40-8ae9-330ef42abcb9 status: 200 OK code: 200 - duration: 70.146044ms + duration: 86.038709ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 229c11a5-7aef-4ba8-8940-76a9f7c288f8 + - cfdd0075-6a9f-47ed-a16d-7c67db7e233c status: 200 OK code: 200 - duration: 70.237689ms + duration: 68.758583ms - id: 8 request: proto: HTTP/1.1 @@ -406,13 +406,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"a976cd16-ed5e-4976-9bab-9726ea2dd97a"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"e485ea00-0d31-440e-9140-f2944caff199"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records method: PATCH response: @@ -432,9 +432,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 369d0d02-ffd8-4b80-8027-b900dd1da417 + - 1108d426-e981-4f4b-b040-347f8c482a51 status: 200 OK code: 200 - duration: 115.565194ms + duration: 123.168917ms - id: 9 request: proto: HTTP/1.1 @@ -461,7 +461,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"8c372f96-14e1-4d30-ad91-3ee472952d94","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"984195af-63ab-48d5-84e0-638489429d92","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"300f91dc-4aeb-4af2-bdd5-799e45de3fdc","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"2b40200b-fcab-49f0-a00c-157e876a682a","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb118f93-265a-4d35-ba14-b5d4da446ce5 + - 46aac28e-30eb-4640-9311-8f31224b6afd status: 200 OK code: 200 - duration: 74.996499ms + duration: 84.697417ms - id: 10 request: proto: HTTP/1.1 @@ -510,7 +510,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2024-06-25T13:27:03Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-03-12T10:07:37Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78778c8e-069c-4f6a-87cb-7638b2f7cf06 + - 387db947-f12b-467b-b6a8-358f9d6f02db status: 200 OK code: 200 - duration: 109.384212ms + duration: 92.808042ms - id: 11 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2024-06-25T13:27:03Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-03-12T10:07:37Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:09 GMT + - Wed, 12 Mar 2025 10:07:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90f3c336-e10d-4d9a-8db4-a261a7d2c86e + - d3ba3405-dddc-4fe0-a4ed-da4478be464a status: 200 OK code: 200 - duration: 87.721814ms + duration: 89.269ms - id: 12 request: proto: HTTP/1.1 @@ -608,7 +608,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 361 + content_length: 349 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-srv","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-srv","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "361" + - "349" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:14 GMT + - Wed, 12 Mar 2025 10:07:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ba60b5c-e9f8-4106-a4ab-a7d97704babf + - 040f8f61-bb76-4a02-b246-9c00b4c22438 status: 200 OK code: 200 - duration: 66.228295ms + duration: 85.200583ms - id: 13 request: proto: HTTP/1.1 @@ -657,7 +657,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -677,9 +677,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:14 GMT + - Wed, 12 Mar 2025 10:07:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6aa956e9-8518-42c4-aa93-9c6261b95dae + - abce6202-715f-462a-93d8-06f898661288 status: 200 OK code: 200 - duration: 182.996809ms + duration: 137.38725ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -726,9 +726,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:14 GMT + - Wed, 12 Mar 2025 10:07:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,7 +736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d047192-9d3b-41d0-b2f6-d38283cc9c3e + - b6c6b8a6-8700-47e8-b129-d79d92a8bb48 status: 403 Forbidden code: 403 - duration: 69.630009ms + duration: 67.631792ms diff --git a/internal/services/domain/testdata/domain-record-view.cassette.yaml b/internal/services/domain/testdata/domain-record-view.cassette.yaml index b21c0101e8..d63cc936f0 100644 --- a/internal/services/domain/testdata/domain-record-view.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-view.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 267 + content_length: 257 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}]}' headers: Content-Length: - - "267" + - "257" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df710dc4-e4d4-4fe4-ab4a-c849298535be + - 48eec2c7-0d33-49f6-a4ec-96d6c84ac66d status: 200 OK code: 200 - duration: 661.766252ms + duration: 544.580833ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?name=tf_view&order_by=name_asc&type=A method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 284 + content_length: 273 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "284" + - "273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aefa79a5-ca33-4059-9696-7a30e0547b27 + - 21b2e514-46ee-4b57-9422-cf915cf27ebc status: 200 OK code: 200 - duration: 99.576942ms + duration: 96.375ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?name=tf_view&order_by=name_asc&page=1&type=A method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 284 + content_length: 273 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "284" + - "273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afacba9c-291a-4bd0-b81b-b120fe6748e4 + - 7cc78d7a-a41b-4bf7-a6ca-7b78cf1d6c80 status: 200 OK code: 200 - duration: 77.962518ms + duration: 83.06275ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=c73149f8-a832-4db5-8cd7-ea50d821ac15&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 284 + content_length: 273 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "284" + - "273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 226c71ea-eeac-4bb9-817d-abf17efb25bb + - 6da91de6-42b6-417a-8f08-a39980dc02b7 status: 200 OK code: 200 - duration: 78.666218ms + duration: 80.514ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abe89cd4-e9c9-45d0-a302-e443d9cfcb7a + - c4cb46c6-38ba-456f-9419-a77b78f19cfc status: 200 OK code: 200 - duration: 66.703116ms + duration: 80.644ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 543 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"98a86a97-9554-48f4-91a1-bcf731910861","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7e864e25-04ec-41c6-aa79-ffa55d8a8fb5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"50e803d6-8343-42b4-a02d-40ed7a5e5c5c","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"9e9197a3-a76f-4099-895f-df322355b631","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":3}' headers: Content-Length: - - "568" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa4e30cd-dfc9-4d1a-8e97-0853ca501afc + - dfd8d994-b142-488a-9428-ebdca70fe23a status: 200 OK code: 200 - duration: 63.515855ms + duration: 89.81975ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9&name=tf_view&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=c73149f8-a832-4db5-8cd7-ea50d821ac15&name=tf_view&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 284 + content_length: 273 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "284" + - "273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1681023-2b36-44e0-8efa-c6d4902e4f8f + - bd3374c1-0f33-48a8-a1ef-99a3e62c9b29 status: 200 OK code: 200 - duration: 73.182734ms + duration: 73.152125ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfd2e6b7-b8e1-4312-bfa6-ffc96768f626 + - c2ef0737-1fd2-4a0d-a229-b3c34f999dce status: 200 OK code: 200 - duration: 65.225545ms + duration: 81.472583ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9&name=tf_view&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=c73149f8-a832-4db5-8cd7-ea50d821ac15&name=tf_view&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 284 + content_length: 273 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.1","subnet":"100.1.0.0/16"}]}}],"total_count":1}' headers: Content-Length: - - "284" + - "273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2115aa1-6d3b-40ae-97df-ed5f1a025f24 + - 6bd4a40d-ff9d-4586-ada0-8a5a1d95020c status: 200 OK code: 200 - duration: 66.729142ms + duration: 88.01125ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70bdf986-ca5b-455a-a8bd-fe4f5adb0c08 + - 1cfe7955-d78d-4eb8-9923-e3c570734554 status: 200 OK code: 200 - duration: 61.050986ms + duration: 76.752375ms - id: 10 request: proto: HTTP/1.1 @@ -504,13 +504,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","records":[{"data":"127.0.0.4","name":"tf_view","priority":0,"ttl":3600,"type":"A","comment":null,"view_config":{"views":[{"subnet":"100.0.0.0/16","data":"1.2.3.4"},{"subnet":"90.1.0.0/32","data":"4.3.2.2"},{"subnet":"1.1.1.1/16","data":"2.2.2.2"}]},"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","records":[{"data":"127.0.0.4","name":"tf_view","priority":0,"ttl":3600,"type":"A","comment":null,"view_config":{"views":[{"subnet":"100.0.0.0/16","data":"1.2.3.4"},{"subnet":"90.1.0.0/32","data":"4.3.2.2"},{"subnet":"1.1.1.1/16","data":"2.2.2.2"}]},"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records method: PATCH response: @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 309 + content_length: 297 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}]}' headers: Content-Length: - - "309" + - "297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45384984-23c4-421e-a670-00285eaa5c44 + - 13aa6576-5080-47fd-bd2b-b6f6eb4de3c2 status: 200 OK code: 200 - duration: 118.674763ms + duration: 120.489667ms - id: 11 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?name=tf_view&order_by=name_asc&type=A method: GET response: @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 313 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}],"total_count":1}' headers: Content-Length: - - "326" + - "313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c96ecea-c703-4931-876e-9ae0acdeebde + - 949a70e5-cd4f-4f53-967d-b0652c64f8f3 status: 200 OK code: 200 - duration: 58.722727ms + duration: 79.230167ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9&name=tf_view&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=c73149f8-a832-4db5-8cd7-ea50d821ac15&name=tf_view&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 313 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}],"total_count":1}' headers: Content-Length: - - "326" + - "313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36c1e34d-d22e-40aa-87d4-3d0fd615ab63 + - bf953d44-8f34-4ad5-88d6-890a3224d069 status: 200 OK code: 200 - duration: 69.017265ms + duration: 72.411583ms - id: 13 request: proto: HTTP/1.1 @@ -657,7 +657,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a464ad45-09a0-44f2-9312-d334e707bcfb + - e57b495a-5862-4de5-a260-5e9dd2dbd9a3 status: 200 OK code: 200 - duration: 54.416254ms + duration: 83.011542ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 + content_length: 583 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"98a86a97-9554-48f4-91a1-bcf731910861","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7e864e25-04ec-41c6-aa79-ffa55d8a8fb5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"50e803d6-8343-42b4-a02d-40ed7a5e5c5c","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"9e9197a3-a76f-4099-895f-df322355b631","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}],"total_count":3}' headers: Content-Length: - - "610" + - "583" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd08b79f-efb3-4d57-8592-f7def0ce4862 + - 1345ae30-0bba-424d-af0e-8eb00ac635e6 status: 200 OK code: 200 - duration: 60.672243ms + duration: 78.084666ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9&name=tf_view&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?id=c73149f8-a832-4db5-8cd7-ea50d821ac15&name=tf_view&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326 + content_length: 313 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.4","id":"c73149f8-a832-4db5-8cd7-ea50d821ac15","name":"tf_view","priority":0,"ttl":3600,"type":"A","view_config":{"views":[{"data":"1.2.3.4","subnet":"100.0.0.0/16"},{"data":"4.3.2.2","subnet":"90.1.0.0/32"},{"data":"2.2.2.2","subnet":"1.1.1.1/16"}]}}],"total_count":1}' headers: Content-Length: - - "326" + - "313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9622c5aa-dbfe-4577-908e-89bdab6dd2a7 + - c041706e-2e59-4db8-9557-b5625620789a status: 200 OK code: 200 - duration: 59.057079ms + duration: 77.438209ms - id: 16 request: proto: HTTP/1.1 @@ -804,7 +804,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-view.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8400e041-f32b-4df1-843f-956136955ab9 + - b959e509-7d1d-45d2-9218-737ddda2bb13 status: 200 OK code: 200 - duration: 53.075422ms + duration: 68.258458ms - id: 17 request: proto: HTTP/1.1 @@ -849,13 +849,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"b4ec2f68-f1ab-4a15-84f0-c311bee7a0c9"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"c73149f8-a832-4db5-8cd7-ea50d821ac15"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records method: PATCH response: @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76f1a0e6-5c96-4024-8450-ad5c2d817b2f + - f901950a-c5fa-49c0-9dea-599cf85c71c4 status: 200 OK code: 200 - duration: 111.713283ms + duration: 120.2525ms - id: 18 request: proto: HTTP/1.1 @@ -904,7 +904,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -913,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"98a86a97-9554-48f4-91a1-bcf731910861","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"7e864e25-04ec-41c6-aa79-ffa55d8a8fb5","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"50e803d6-8343-42b4-a02d-40ed7a5e5c5c","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"9e9197a3-a76f-4099-895f-df322355b631","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0f31c86-644d-4dff-ab09-4916bd822564 + - a0b8e784-1386-48eb-9da8-d33c45e4df1d status: 200 OK code: 200 - duration: 62.704301ms + duration: 82.169042ms - id: 19 request: proto: HTTP/1.1 @@ -953,7 +953,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-view.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -962,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 351 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2024-06-25T13:27:06Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-view","updated_at":"2025-03-12T10:07:40Z"}],"total_count":1}' headers: Content-Length: - - "363" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04dc545b-1ca3-47e4-b763-11c516426f6f + - 6e78cc00-f839-4c29-ab47-c7bc404b87ac status: 200 OK code: 200 - duration: 52.829821ms + duration: 142.428834ms - id: 20 request: proto: HTTP/1.1 @@ -1002,7 +1002,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-view.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1011,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-view","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-view","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7804bb6-617e-4172-9f78-b710582b745f + - 0d54ac60-3eb1-4456-bcf5-c74f966e15c7 status: 200 OK code: 200 - duration: 53.014016ms + duration: 77.756541ms - id: 21 request: proto: HTTP/1.1 @@ -1051,7 +1051,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -1071,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cff0f64-8170-40e8-bc15-97084e55133b + - fa097a2f-0ed1-4bbe-8df1-ed5cc66331fb status: 200 OK code: 200 - duration: 274.41671ms + duration: 148.325542ms - id: 22 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-view.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1120,9 +1120,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,7 +1130,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 420ada82-8558-486f-afd7-1afe597fcf99 + - 85ecf01a-eb94-4b80-80df-35447cf8ba07 status: 403 Forbidden code: 403 - duration: 60.796622ms + duration: 82.512083ms diff --git a/internal/services/domain/testdata/domain-record-weighted.cassette.yaml b/internal/services/domain/testdata/domain-record-weighted.cassette.yaml index 308d19fa90..0224f5d9f2 100644 --- a/internal/services/domain/testdata/domain-record-weighted.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-weighted.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records method: PATCH response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 252 + content_length: 242 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}]}' headers: Content-Length: - - "252" + - "242" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 379f9395-213f-44b5-ad3f-a059200b0929 + - af64bdac-dbcf-4578-9691-1097e0b22357 status: 200 OK code: 200 - duration: 904.744384ms + duration: 522.93325ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?name=tf_weighted&order_by=name_asc&type=A method: GET response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 269 + content_length: 258 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "269" + - "258" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 484bc0cd-2483-48c8-a15a-e455bcad572d + - da6b5e32-a14d-4339-9ce6-8a11b1b58faa status: 200 OK code: 200 - duration: 57.425489ms + duration: 117.189167ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?name=tf_weighted&order_by=name_asc&page=1&type=A method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 269 + content_length: 258 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "269" + - "258" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aecfbbbc-da4d-4855-a45f-d6ab76bf5356 + - 45ba47e4-819c-4c6f-a6db-3b349241a49e status: 200 OK code: 200 - duration: 78.637296ms + duration: 71.874167ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=044396c0-3072-4ca0-acae-8e3c05228d4d&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=1bf6c67a-9c24-4241-8c91-6c81927b71f6&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 269 + content_length: 258 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "269" + - "258" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9495f5ef-5129-4514-b466-c9c2bc93530d + - 156acbd9-931b-40ae-9db4-24a07008a1c4 status: 200 OK code: 200 - duration: 73.007445ms + duration: 72.13ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 355 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "367" + - "355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6ac08a8-a2de-4a83-a2ce-ef5ab6deb06b + - c5ba31cd-4317-4e3c-8fe5-b747c1c92272 status: 200 OK code: 200 - duration: 53.974233ms + duration: 87.62775ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 553 + content_length: 528 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"68999481-9514-4742-805c-d9ab155a0724","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"0bb7ecb0-667b-456d-8644-ca7f8fc9b36d","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"25518cfc-6b8f-4c2b-9a61-dca63efa0221","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a4aa3d62-f9d5-484d-bbff-6839d43d2f39","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":3}' headers: Content-Length: - - "553" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46db4c3f-9fc9-4d96-a81d-082a0e77bab4 + - 7705bd47-4f2b-4d31-9cd8-ac5c9eb13b9d status: 200 OK code: 200 - duration: 81.781087ms + duration: 78.738375ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=044396c0-3072-4ca0-acae-8e3c05228d4d&name=tf_weighted&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=1bf6c67a-9c24-4241-8c91-6c81927b71f6&name=tf_weighted&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 269 + content_length: 258 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "269" + - "258" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 250f1eb6-df48-4c30-82aa-da172dea7bfc + - c13d06c5-f475-48da-b0f9-c71a174b1533 status: 200 OK code: 200 - duration: 76.227226ms + duration: 71.066458ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 355 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "367" + - "355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fc68b34-63c4-4585-a0d9-df51a90dd8ae + - 86711429-5b63-43cf-b632-fe74ac1dd73b status: 200 OK code: 200 - duration: 61.703609ms + duration: 84.427666ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=044396c0-3072-4ca0-acae-8e3c05228d4d&name=tf_weighted&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=1bf6c67a-9c24-4241-8c91-6c81927b71f6&name=tf_weighted&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 269 + content_length: 258 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":1},{"ip":"4.3.2.1","weight":2}]}}],"total_count":1}' headers: Content-Length: - - "269" + - "258" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bd25d1f-9049-459b-a477-2b35c933e96c + - 5ba347ef-dcdf-4b87-bbf7-9a96952b6c51 status: 200 OK code: 200 - duration: 107.053016ms + duration: 135.573459ms - id: 9 request: proto: HTTP/1.1 @@ -459,7 +459,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 355 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2024-06-25T13:27:01Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "367" + - "355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5f3354a-9a3b-44be-8def-c955e5298f40 + - 85068a2a-c69c-4914-b975-1b8227f3eb86 status: 200 OK code: 200 - duration: 55.317788ms + duration: 98.838875ms - id: 10 request: proto: HTTP/1.1 @@ -504,13 +504,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"044396c0-3072-4ca0-acae-8e3c05228d4d","records":[{"data":"127.0.0.5","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","comment":null,"weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]},"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","records":[{"data":"127.0.0.5","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","comment":null,"weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]},"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records method: PATCH response: @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 284 + content_length: 272 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}]}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}]}' headers: Content-Length: - - "284" + - "272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cec3918b-ccb0-4691-b4de-82547adfc291 + - 53320f2d-a06c-41ab-939c-af90688ec8ec status: 200 OK code: 200 - duration: 129.041549ms + duration: 116.288ms - id: 11 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?name=tf_weighted&order_by=name_asc&type=A method: GET response: @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 301 + content_length: 288 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}],"total_count":1}' headers: Content-Length: - - "301" + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9815ce3f-7068-475b-b8db-e89ae43203bc + - 7d9b1cc9-ced9-4ab1-b56b-dd6f0ee096e6 status: 200 OK code: 200 - duration: 59.538026ms + duration: 121.558ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=044396c0-3072-4ca0-acae-8e3c05228d4d&name=tf_weighted&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=1bf6c67a-9c24-4241-8c91-6c81927b71f6&name=tf_weighted&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 301 + content_length: 288 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}],"total_count":1}' headers: Content-Length: - - "301" + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 675567bc-3f61-4889-ab35-a239bc71bf3c + - 52b423ac-8195-48fc-ac8b-0b6e515d045b status: 200 OK code: 200 - duration: 69.030217ms + duration: 71.585042ms - id: 13 request: proto: HTTP/1.1 @@ -657,7 +657,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 355 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "367" + - "355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:04 GMT + - Wed, 12 Mar 2025 10:07:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 274c2d1a-af3b-498c-b3a1-fc03f651fc49 + - 516d386c-d0c5-4e4c-9cc7-8655ddc1d560 status: 200 OK code: 200 - duration: 57.805551ms + duration: 80.989416ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 585 + content_length: 558 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"68999481-9514-4742-805c-d9ab155a0724","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"0bb7ecb0-667b-456d-8644-ca7f8fc9b36d","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"25518cfc-6b8f-4c2b-9a61-dca63efa0221","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a4aa3d62-f9d5-484d-bbff-6839d43d2f39","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}],"total_count":3}' headers: Content-Length: - - "585" + - "558" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7704374-2588-4867-b00f-93e7f65ed19f + - 5ed05848-1b0c-4425-9f5e-20fcf79acf2f status: 200 OK code: 200 - duration: 68.142779ms + duration: 76.914167ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=044396c0-3072-4ca0-acae-8e3c05228d4d&name=tf_weighted&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?id=1bf6c67a-9c24-4241-8c91-6c81927b71f6&name=tf_weighted&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 301 + content_length: 288 uncompressed: false - body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"044396c0-3072-4ca0-acae-8e3c05228d4d","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"127.0.0.5","id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6","name":"tf_weighted","priority":0,"ttl":3600,"type":"A","weighted_config":{"weighted_ips":[{"ip":"1.2.3.4","weight":2},{"ip":"4.3.2.1","weight":1},{"ip":"5.6.7.8","weight":999}]}}],"total_count":1}' headers: Content-Length: - - "301" + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bb443f0-4dd4-483f-a61a-9fcd2f93de32 + - 2f6f04c8-005d-4306-bfe9-06c2c1b1335d status: 200 OK code: 200 - duration: 67.030653ms + duration: 71.148083ms - id: 16 request: proto: HTTP/1.1 @@ -804,7 +804,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-weighted.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 355 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2024-06-25T13:27:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2025-03-12T10:07:38Z"}],"total_count":1}' headers: Content-Length: - - "367" + - "355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:05 GMT + - Wed, 12 Mar 2025 10:07:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 358f8f26-2769-40af-8d5c-b1dd90a56794 + - 0bf0e6b4-cd4b-44ba-aa2d-77058efede22 status: 200 OK code: 200 - duration: 65.745988ms + duration: 89.606375ms - id: 17 request: proto: HTTP/1.1 @@ -849,13 +849,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"044396c0-3072-4ca0-acae-8e3c05228d4d"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"1bf6c67a-9c24-4241-8c91-6c81927b71f6"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records method: PATCH response: @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7960a9af-601c-4656-935e-79bce9a82110 + - bb9d1a03-47cb-4866-8a05-fa00da3bb7a7 status: 200 OK code: 200 - duration: 99.093061ms + duration: 112.66225ms - id: 18 request: proto: HTTP/1.1 @@ -904,7 +904,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -913,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"68999481-9514-4742-805c-d9ab155a0724","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"0bb7ecb0-667b-456d-8644-ca7f8fc9b36d","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"25518cfc-6b8f-4c2b-9a61-dca63efa0221","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"a4aa3d62-f9d5-484d-bbff-6839d43d2f39","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0306178f-b8c9-4052-a4a6-270ad254fc14 + - b800d32a-1fa0-4547-9711-332933cbf434 status: 200 OK code: 200 - duration: 77.387343ms + duration: 77.599792ms - id: 19 request: proto: HTTP/1.1 @@ -953,7 +953,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-weighted.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -962,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 355 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2024-06-25T13:27:06Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-weighted","updated_at":"2025-03-12T10:07:41Z"}],"total_count":1}' headers: Content-Length: - - "367" + - "355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:06 GMT + - Wed, 12 Mar 2025 10:07:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42b75273-57a6-4df2-9c44-8fdac18f3d06 + - 131667d6-faa8-4291-bcc6-4955d7494f75 status: 200 OK code: 200 - duration: 57.032414ms + duration: 91.837541ms - id: 20 request: proto: HTTP/1.1 @@ -1002,7 +1002,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-weighted.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1011,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 354 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-weighted","updated_at":"2024-06-25T13:27:09Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-weighted","updated_at":"2025-03-12T10:07:44Z"}],"total_count":1}' headers: Content-Length: - - "366" + - "354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5357a3f3-fbe6-451c-a335-d00b59d3ce53 + - e885f9c8-a9d1-48f8-8807-9b36450b50f2 status: 200 OK code: 200 - duration: 55.879627ms + duration: 94.537042ms - id: 21 request: proto: HTTP/1.1 @@ -1051,7 +1051,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -1071,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bbeda72-eac4-451b-953f-abef70ce1a56 + - 16ce45fc-b982-4b3b-9d42-449d3fc6f5aa status: 200 OK code: 200 - duration: 209.873079ms + duration: 153.581083ms - id: 22 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-weighted.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown method: GET response: @@ -1120,9 +1120,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:11 GMT + - Wed, 12 Mar 2025 10:07:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,7 +1130,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34a2e2e8-b521-4d07-8bd5-4d960f038bcc + - de530488-5f6d-4b8e-beda-0fc4a18cdbf6 status: 403 Forbidden code: 403 - duration: 83.617411ms + duration: 76.957167ms diff --git a/internal/services/domain/testdata/domain-zone-basic.cassette.yaml b/internal/services/domain/testdata/domain-zone-basic.cassette.yaml index dd3dd665a7..5893ebbd6f 100644 --- a/internal/services/domain/testdata/domain-zone-basic.cassette.yaml +++ b/internal/services/domain/testdata/domain-zone-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 33 + content_length: 32 uncompressed: false body: '{"dns_zones":[],"total_count":0}' headers: Content-Length: - - "33" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:00 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e040b722-f578-4a38-a555-bd81a510a0f8 + - 2aa3455d-92a8-4ccc-bd95-05ab77ecf793 status: 200 OK code: 200 - duration: 117.726479ms + duration: 321.893667ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones method: POST response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 329 + content_length: 318 uncompressed: false - body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2024-06-25T13:27:00Z"}' + body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2025-03-12T10:07:33Z"}' headers: Content-Length: - - "329" + - "318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:00 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90c74e53-d5de-4c26-8598-9c737eb81621 + - 468d9534-a79b-40f0-89e2-90bbab4cdc0e status: 200 OK code: 200 - duration: 576.413263ms + duration: 560.251042ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23498acf-1c61-4798-b0b8-ac4e8cebf79f + - 4f25e06f-0d91-49cf-97af-54100b841ec8 status: 200 OK code: 200 - duration: 68.054256ms + duration: 146.029208ms - id: 3 request: proto: HTTP/1.1 @@ -165,7 +165,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:01 GMT + - Wed, 12 Mar 2025 10:07:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1815e13c-c5b5-43b3-aa18-ed41ecbfcd75 + - 524f5407-d869-4e9b-b8da-7333fe75215a status: 200 OK code: 200 - duration: 68.094201ms + duration: 80.358333ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:02 GMT + - Wed, 12 Mar 2025 10:07:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cacc115d-0c96-4722-ae8f-77847b51f343 + - 0f9ca76e-a1a0-468a-98f6-a5274c62fd6d status: 200 OK code: 200 - duration: 80.860775ms + duration: 153.083459ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-zone.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2024-06-25T13:27:00Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-zone","updated_at":"2025-03-12T10:07:33Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 249e8be1-2069-4cea-b803-68ab997debd6 + - 0b1be5dc-10fd-4391-8a85-35c1748f3485 status: 200 OK code: 200 - duration: 77.278939ms + duration: 95.76525ms - id: 6 request: proto: HTTP/1.1 @@ -312,7 +312,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-zone.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3940e2fb-2235-48f1-a0b6-8b7b1c7ca7d7 + - c626935e-9578-4f7d-9cb7-d4bf499c2439 status: 200 OK code: 200 - duration: 185.747027ms + duration: 146.823875ms - id: 7 request: proto: HTTP/1.1 @@ -361,7 +361,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-zone.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 33 + content_length: 32 uncompressed: false body: '{"dns_zones":[],"total_count":0}' headers: Content-Length: - - "33" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 25 Jun 2024 13:27:03 GMT + - Wed, 12 Mar 2025 10:07:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,7 +391,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 445c78ea-5523-4dae-aef1-dccd69670518 + - 93e66578-bc6a-4367-b25c-43f27d96d87f status: 200 OK code: 200 - duration: 75.17808ms + duration: 66.883208ms