diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 4496f3f0af..2f949b2178 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -224,6 +224,7 @@ func Provider(config *Config) plugin.ProviderFunc { "scaleway_secret_version": secret.ResourceVersion(), "scaleway_tem_domain": tem.ResourceDomain(), "scaleway_tem_domain_validation": tem.ResourceDomainValidation(), + "scaleway_tem_blocked_list": tem.ResourceBlockedList(), "scaleway_tem_webhook": tem.ResourceWebhook(), "scaleway_vpc": vpc.ResourceVPC(), "scaleway_vpc_acl": vpc.ResourceACL(), diff --git a/internal/services/tem/blockedlist.go b/internal/services/tem/blockedlist.go new file mode 100644 index 0000000000..0da0fef3ae --- /dev/null +++ b/internal/services/tem/blockedlist.go @@ -0,0 +1,141 @@ +package tem + +import ( + "context" + "fmt" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" + tem "github.com/scaleway/scaleway-sdk-go/api/tem/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" +) + +func ResourceBlockedList() *schema.Resource { + return &schema.Resource{ + CreateContext: ResourceBlockedListCreate, + ReadContext: ResourceBlockedListRead, + DeleteContext: ResourceBlockedListDelete, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, + Schema: map[string]*schema.Schema{ + "domain_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + Description: "The ID of the domain affected by the blocklist.", + }, + "email": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + Description: "Email address to block.", + }, + "type": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + Description: "Type of the blocked list. (mailbox_full or mailbox_not_found)", + ValidateFunc: validation.StringInSlice([]string{"mailbox_full", "mailbox_not_found"}, false), + }, + "reason": { + Type: schema.TypeString, + Optional: true, + Default: "manual_block", + ForceNew: true, + Description: "Reason for blocking the emails.", + }, + "region": regional.Schema(), + "project_id": account.ProjectIDSchema(), + }, + } +} + +func ResourceBlockedListCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, region, err := temAPIWithRegion(d, m) + if err != nil { + return diag.FromErr(err) + } + + _, domainID, err := regional.ParseID(d.Get("domain_id").(string)) + if err != nil { + return diag.FromErr(err) + } + + emails := []string{d.Get("email").(string)} + reason := d.Get("reason").(string) + typeBlockedList := d.Get("type").(string) + + resp, err := api.BulkCreateBlocklists(&tem.BulkCreateBlocklistsRequest{ + Emails: emails, + Region: region, + DomainID: domainID, + Type: tem.BlocklistType(typeBlockedList), + Reason: &reason, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + d.SetId(fmt.Sprintf("%s/%s", region, resp.Blocklists[0].ID)) + + return ResourceBlockedListRead(ctx, d, m) +} + +func ResourceBlockedListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, region, domainID, err := NewAPIWithRegionAndID(m, d.Get("domain_id").(string)) + if err != nil { + return diag.FromErr(err) + } + + blocklists, err := api.ListBlocklists(&tem.ListBlocklistsRequest{ + Region: region, + Email: scw.StringPtr(d.Get("email").(string)), + DomainID: domainID, + }, scw.WithContext(ctx)) + if err != nil { + if httperrors.Is404(err) { + d.SetId("") + + return nil + } + + return diag.FromErr(err) + } + + if len(blocklists.Blocklists) == 0 { + d.SetId("") + + return nil + } + + _ = d.Set("email", blocklists.Blocklists[0].Email) + _ = d.Set("reason", blocklists.Blocklists[0].Reason) + _ = d.Set("domain_id", fmt.Sprintf("%s/%s", region, blocklists.Blocklists[0].DomainID)) + _ = d.Set("type", blocklists.Blocklists[0].Type) + + return nil +} + +func ResourceBlockedListDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, region, id, err := NewAPIWithRegionAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + err = api.DeleteBlocklist(&tem.DeleteBlocklistRequest{ + Region: region, + BlocklistID: id, + }, scw.WithContext(ctx)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + + d.SetId("") + + return nil +} diff --git a/internal/services/tem/blockedlist_test.go b/internal/services/tem/blockedlist_test.go new file mode 100644 index 0000000000..c0f54eda71 --- /dev/null +++ b/internal/services/tem/blockedlist_test.go @@ -0,0 +1,133 @@ +package tem_test + +import ( + "context" + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + temSDK "github.com/scaleway/scaleway-sdk-go/api/tem/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/tem" +) + +func TestAccBlockedList_Basic(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + subDomainName := "test-blockedlist" + + blockedEmail := "spam@example.com" + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isBlockedEmailDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + + resource "scaleway_domain_zone" "test" { + domain = "%s" + subdomain = "%s" + } + + resource scaleway_tem_domain cr01 { + name = scaleway_domain_zone.test.id + accept_tos = true + autoconfig = true + } + + resource scaleway_tem_domain_validation valid { + domain_id = scaleway_tem_domain.cr01.id + region = scaleway_tem_domain.cr01.region + timeout = 3600 + } + + resource "scaleway_tem_blocked_list" "test" { + domain_id = scaleway_tem_domain.cr01.id + email = "%s" + type = "mailbox_full" + reason = "Spam detected" + region = "fr-par" + depends_on = [ + scaleway_tem_domain_validation.valid + ] + } + `, domainNameValidation, subDomainName, blockedEmail), + Check: resource.ComposeTestCheckFunc( + isBlockedEmailPresent(tt, "scaleway_tem_blocked_list.test"), + resource.TestCheckResourceAttr("scaleway_tem_blocked_list.test", "email", blockedEmail), + resource.TestCheckResourceAttr("scaleway_tem_blocked_list.test", "type", "mailbox_full"), + resource.TestCheckResourceAttr("scaleway_tem_blocked_list.test", "reason", "Spam detected"), + acctest.CheckResourceAttrUUID("scaleway_tem_blocked_list.test", "id"), + ), + }, + }, + }) +} + +func isBlockedEmailPresent(tt *acctest.TestTools, n string) resource.TestCheckFunc { + return func(state *terraform.State) error { + rs, ok := state.RootModule().Resources[n] + if !ok { + return fmt.Errorf("resource not found: %s", n) + } + + api, region, domainID, err := tem.NewAPIWithRegionAndID(tt.Meta, rs.Primary.Attributes["domain_id"]) + if err != nil { + return err + } + + blockedEmail := rs.Primary.Attributes["email"] + + blocklists, err := api.ListBlocklists(&temSDK.ListBlocklistsRequest{ + Region: region, + DomainID: domainID, + Email: scw.StringPtr(blockedEmail), + }, scw.WithContext(context.Background())) + if err != nil { + return err + } + + if len(blocklists.Blocklists) == 0 { + return fmt.Errorf("blocked email %s not found in blocklist", blockedEmail) + } + + return nil + } +} + +func isBlockedEmailDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { + return func(state *terraform.State) error { + for _, rs := range state.RootModule().Resources { + if rs.Type != "scaleway_tem_blocked_list" { + continue + } + + api, region, domainID, err := tem.NewAPIWithRegionAndID(tt.Meta, rs.Primary.Attributes["domain_id"]) + if err != nil { + return err + } + + blockedEmail := rs.Primary.Attributes["email"] + + blocklists, err := api.ListBlocklists(&temSDK.ListBlocklistsRequest{ + Region: region, + DomainID: domainID, + Email: scw.StringPtr(blockedEmail), + }, scw.WithContext(context.Background())) + if err != nil { + return err + } + + if len(blocklists.Blocklists) > 0 { + return fmt.Errorf("blocked email %s still present after deletion", blockedEmail) + } + } + + return nil + } +} diff --git a/internal/services/tem/testdata/blocked-list-basic.cassette.yaml b/internal/services/tem/testdata/blocked-list-basic.cassette.yaml new file mode 100644 index 0000000000..05f3c96c23 --- /dev/null +++ b/internal/services/tem/testdata/blocked-list-basic.cassette.yaml @@ -0,0 +1,1650 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-blockedlist.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: 32 + uncompressed: false + body: '{"dns_zones":[],"total_count":0}' + headers: + Content-Length: + - "32" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:00 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: + - 36adbad3-64de-45d5-bdd9-1f0962a86aa7 + status: 200 OK + code: 200 + duration: 241.520292ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domain":"scaleway-terraform.com","subdomain":"test-blockedlist","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}' + 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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 325 + 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-blockedlist","updated_at":"2025-03-26T10:23:00Z"}' + headers: + Content-Length: + - "325" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:00 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: + - 7a068bc5-c650-4d6b-aace-917eb6daa01d + status: 200 OK + code: 200 + duration: 395.462584ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-blockedlist.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: 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-blockedlist","updated_at":"2025-03-26T10:23:00Z"}],"total_count":1}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:00 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: + - 01627580-8819-410f-97d2-d13f8fa71c12 + status: 200 OK + code: 200 + duration: 107.136125ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 145 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"test-blockedlist.scaleway-terraform.com","accept_tos":true,"autoconfig":true}' + 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/transactional-email/v1alpha1/regions/fr-par/domains + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1199 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:05.112917Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T10:23:05.258613078Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1199" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:05 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: + - c566bedf-3d53-465d-b3bd-72c92092eec3 + status: 200 OK + code: 200 + duration: 4.546163209s + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1199 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:05.112917Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T10:23:06.026415809Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1199" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:06 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: + - d99c9393-a30f-4924-b067-6e26b92d65a7 + status: 200 OK + code: 200 + duration: 802.601917ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1199 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:05.112917Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T10:23:07.890125271Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1199" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:07 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: + - 38ec589b-8b18-434d-8e80-601334cb1435 + status: 200 OK + code: 200 + duration: 1.875158333s + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1077 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:05.112917Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1077" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:08 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: + - d53d0ebf-84c4-4553-b707-0ceca9bab0f6 + status: 200 OK + code: 200 + duration: 134.510042ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1077 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:05.112917Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1077" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:08 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: + - 7100e7e0-498d-47ab-a366-ac4feaecdb54 + status: 200 OK + code: 200 + duration: 28.851042ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1077 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:05.112917Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1077" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:09 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: + - 642a5edd-5045-4fc0-9233-e24162a929f8 + status: 200 OK + code: 200 + duration: 79.943792ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:11.794723455Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:11 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: + - 7321490c-223c-4d26-b344-3e569ae38a4d + status: 200 OK + code: 200 + duration: 101.974958ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1077 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:11.794723Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1077" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:15 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: + - c3bfecbf-abf5-4b83-a9a3-fdc748efbde1 + status: 200 OK + code: 200 + duration: 99.993833ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:23.998217914Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:24 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: + - 12eac71b-a539-4599-9a2a-c9664a8a3cac + status: 200 OK + code: 200 + duration: 100.682042ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:34.104623294Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:34 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: + - fc3ff1be-c225-4dcb-88b6-94716f998cff + status: 200 OK + code: 200 + duration: 111.141792ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:44.199180324Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:44 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: + - 4728da4e-56d6-4dfd-bd19-4085111907c7 + status: 200 OK + code: 200 + duration: 129.911167ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:23:54.335349807Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:23:54 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: + - 025f7b67-a747-4fa5-bbb1-85727f235b3e + status: 200 OK + code: 200 + duration: 91.110542ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":null,"name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:24:04.438611894Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:04 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: + - 07f55e00-9332-4527-a89e-bdaaa4427711 + status: 200 OK + code: 200 + duration: 106.9605ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":"2025-03-26T10:24:05.386616Z","name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:25:05.386616Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:14 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: + - 840abc73-a4b8-4222-b912-a1e593fbf891 + status: 200 OK + code: 200 + duration: 101.650958ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":"2025-03-26T10:24:05.386616Z","name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:25:05.386616Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:14 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: + - c22b395c-42a6-4903-b2ba-6ab355b2fb45 + status: 200 OK + code: 200 + duration: 95.41575ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1216 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":"2025-03-26T10:24:05.386616Z","name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:25:05.386616Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T10:24:17.000189560Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + headers: + Content-Length: + - "1216" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:17 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: + - 049225bd-1715-405e-b057-c40b8a4d93ef + status: 200 OK + code: 200 + duration: 2.389888583s + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 129 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domain_id":"336d160e-40f0-4661-9689-216671f9f828","emails":["spam@example.com"],"type":"mailbox_full","reason":"Spam detected"}' + 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/transactional-email/v1alpha1/regions/fr-par/blocklists + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 302 + uncompressed: false + body: '{"blocklists":[{"created_at":"2025-03-26T10:24:17.146783Z","custom":true,"domain_id":"336d160e-40f0-4661-9689-216671f9f828","email":"spam@example.com","ends_at":null,"id":"150f8a03-8a81-4ba3-b9f2-b4dbb031e237","reason":"Spam detected","type":"mailbox_full","updated_at":"2025-03-26T10:24:17.146783Z"}]}' + headers: + Content-Length: + - "302" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:17 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: + - b617118c-8afd-48ff-9881-2fbedd68eb82 + status: 200 OK + code: 200 + duration: 137.142375ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/blocklists?domain_id=336d160e-40f0-4661-9689-216671f9f828&email=spam%40example.com&order_by=created_at_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 318 + uncompressed: false + body: '{"blocklists":[{"created_at":"2025-03-26T10:24:17.146783Z","custom":true,"domain_id":"336d160e-40f0-4661-9689-216671f9f828","email":"spam@example.com","ends_at":null,"id":"150f8a03-8a81-4ba3-b9f2-b4dbb031e237","reason":"Spam detected","type":"mailbox_full","updated_at":"2025-03-26T10:24:17.146783Z"}],"total_count":1}' + headers: + Content-Length: + - "318" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:17 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: + - 71146182-5a3e-43b4-9958-8accc6e71352 + status: 200 OK + code: 200 + duration: 346.480833ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/blocklists?domain_id=336d160e-40f0-4661-9689-216671f9f828&email=spam%40example.com&order_by=created_at_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 318 + uncompressed: false + body: '{"blocklists":[{"created_at":"2025-03-26T10:24:17.146783Z","custom":true,"domain_id":"336d160e-40f0-4661-9689-216671f9f828","email":"spam@example.com","ends_at":null,"id":"150f8a03-8a81-4ba3-b9f2-b4dbb031e237","reason":"Spam detected","type":"mailbox_full","updated_at":"2025-03-26T10:24:17.146783Z"}],"total_count":1}' + headers: + Content-Length: + - "318" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:18 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: + - 528a6d26-e79c-4010-b207-a616ad72929c + status: 200 OK + code: 200 + duration: 339.823208ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-blockedlist.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + 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-blockedlist","updated_at":"2025-03-26T10:24:09Z"}],"total_count":1}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:18 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: + - 2a7bbeb5-4e26-412a-b4b4-f8766c8c0cb2 + status: 200 OK + code: 200 + duration: 91.78675ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1216 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":"2025-03-26T10:24:05.386616Z","name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:25:05.386616Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T10:24:21.250580380Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + headers: + Content-Length: + - "1216" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:21 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: + - e1ad5daa-3d51-4c02-a35c-bc8a55b9c137 + status: 200 OK + code: 200 + duration: 2.3645415s + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1216 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":"2025-03-26T10:24:05.386616Z","name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:25:05.386616Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T10:24:23.112089680Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + headers: + Content-Length: + - "1216" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:23 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: + - 3f420700-3eae-47b2-a73f-66a0e0e40e3a + status: 200 OK + code: 200 + duration: 1.909828542s + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/blocklists?domain_id=336d160e-40f0-4661-9689-216671f9f828&email=spam%40example.com&order_by=created_at_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 318 + uncompressed: false + body: '{"blocklists":[{"created_at":"2025-03-26T10:24:17.146783Z","custom":true,"domain_id":"336d160e-40f0-4661-9689-216671f9f828","email":"spam@example.com","ends_at":null,"id":"150f8a03-8a81-4ba3-b9f2-b4dbb031e237","reason":"Spam detected","type":"mailbox_full","updated_at":"2025-03-26T10:24:17.146783Z"}],"total_count":1}' + headers: + Content-Length: + - "318" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:23 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: + - a2cf7864-096e-4a1d-a7ce-b9958b854630 + status: 200 OK + code: 200 + duration: 265.968583ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/blocklists/150f8a03-8a81-4ba3-b9f2-b4dbb031e237 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:24 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: + - db08bf60-9e59-410d-bfe0-2174c904f76d + status: 204 No Content + code: 204 + duration: 328.251042ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1216 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":"2025-03-26T10:24:05.386616Z","name":"test-blockedlist.scaleway-terraform.com","next_check_at":"2025-03-26T10:25:05.386616Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-blockedlist","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T10:24:26.316103260Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + headers: + Content-Length: + - "1216" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:26 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: + - b7240b34-62f4-4bcf-a7d5-57a97a0e7d9b + status: 200 OK + code: 200 + duration: 1.972861542s + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + 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/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1001 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":"2025-03-26T10:24:05.386616Z","name":"test-blockedlist.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2025-03-26T10:24:26.885744671Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "1001" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:26 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: + - fa3fd6a0-4ddf-49df-93a3-a580902d7cee + status: 200 OK + code: 200 + duration: 260.12175ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/336d160e-40f0-4661-9689-216671f9f828 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1149 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T10:23:05.161401Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3B0t53dC5BB5krGb488UsZvGWaPHil+mstApiGFyBOfmust3mm/JA/tBlSyEKneQKpNaAwxJ2VNxiOrNZK3Fn/EHsZJQmNW2EqpGGA2+P2ZzQolaH6fyaV/b2IBbrXazZ8KyrU8awu89sccKz0Y9VzVn3lwG3Ql1TcqJgalwTnhlgs0GF/8apPIrz2ro3NeVPQ5XAtuV/icR3s0D+ixh9Umi7Ok/NHbIwxLlBflycrXoJatYmqOjhDVMUfPRQhSV0Ffg2hrPADIPryQoO2YLzanNQ6/ytyaOZ8Gc3EYuhIZ4wx85eRzwMkhPNIbzsQIIwRHXj15qYsKUcrbrdFBLZQIDAQAB","id":"336d160e-40f0-4661-9689-216671f9f828","last_error":null,"last_valid_at":"2025-03-26T10:24:05.386616Z","name":"test-blockedlist.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T10:24:28.922150502Z","status":"excellent"},"revoked_at":"2025-03-26T10:24:26.885744Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "1149" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:28 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: + - 87da3c7f-8a0f-4d02-a906-cb87105d5aff + status: 200 OK + code: 200 + duration: 1.969858125s + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-blockedlist.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: 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-blockedlist","updated_at":"2025-03-26T10:24:09Z"}],"total_count":1}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:29 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: + - f387e821-04d4-46a3-93ec-0578ebfd8dc9 + status: 200 OK + code: 200 + duration: 95.3395ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-blockedlist.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: 2 + uncompressed: false + body: '{}' + headers: + Content-Length: + - "2" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:29 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: + - 59405486-ea6a-47da-b7b1-9408f30ee975 + status: 200 OK + code: 200 + duration: 279.816625ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/blocklists?domain_id=336d160e-40f0-4661-9689-216671f9f828&email=spam%40example.com&order_by=created_at_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 33 + uncompressed: false + body: '{"blocklists":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 10:24:29 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: + - 05277b8b-6be8-48e0-9eb0-cb51e0b64ebc + status: 200 OK + code: 200 + duration: 136.030791ms diff --git a/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml b/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml index 83e2bcdd44..ac57da8862 100644 --- a/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml +++ b/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig-update.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: - - Fri, 20 Sep 2024 13:00:59 GMT + - Wed, 26 Mar 2025 09:36:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b125db2c-a067-4e56-909c-33b21bfe7a4d + - 284d6b72-5ef2-45ad-8fd4-c9e162687584 status: 200 OK code: 200 - duration: 77.426508ms + duration: 1.303255708s - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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: 342 + content_length: 331 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-autoconfig-update","updated_at":"2024-09-20T13:00:59Z"}' + 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-autoconfig-update","updated_at":"2025-03-26T09:36:42Z"}' headers: Content-Length: - - "342" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:00 GMT + - Wed, 26 Mar 2025 09:36:42 GMT Server: - - Scaleway API Gateway (fr-par-1;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: - - 35fbce92-204b-48a1-8243-1f805760075b + - b24b4bf0-dbc7-4816-a0b8-ebc137a8fd0b status: 200 OK code: 200 - duration: 554.894449ms + duration: 384.683667ms - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -125,20 +125,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":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00: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":"active","subdomain":"test-autoconfig-update","updated_at":"2025-03-26T09:36:42Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:00 GMT + - Wed, 26 Mar 2025 09:36:42 GMT Server: - - Scaleway API Gateway (fr-par-1;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: - - 5f0fc375-c099-4537-b7f4-3751293d4d0e + - 4c3b663f-445f-4da1-9c3b-2fddaf2c6c4e status: 200 OK code: 200 - duration: 121.680384ms + duration: 79.424625ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains method: POST response: @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1205 + content_length: 1181 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:00.957990874Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:43.307614348Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' headers: Content-Length: - - "1205" + - "1181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:00 GMT + - Wed, 26 Mar 2025 09:36:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aca52d90-2479-49fd-9c82-f000858108cd + - 1a788173-6020-42f1-a979-c232417acfe7 status: 200 OK code: 200 - duration: 460.481284ms + duration: 378.546333ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1205 + content_length: 1181 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:00.992287445Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:45.618241271Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' headers: Content-Length: - - "1205" + - "1181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:01 GMT + - Wed, 26 Mar 2025 09:36:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ac71ef7-000e-4f3a-b561-5bb9912ab617 + - 3c1eb89d-2e0b-41f9-9fa7-90c4eae650fc status: 200 OK code: 200 - duration: 66.851156ms + duration: 2.330424375s - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1205 + content_length: 1181 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.422058060Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:48.259171740Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' headers: Content-Length: - - "1205" + - "1181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:01 GMT + - Wed, 26 Mar 2025 09:36:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75319153-e9db-491e-8f4e-667c5edc0a9e + - 01def178-6a96-4567-9627-81f3ac7ca939 status: 200 OK code: 200 - duration: 295.668263ms + duration: 2.400585666s - id: 6 request: proto: HTTP/1.1 @@ -314,7 +314,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: @@ -323,20 +323,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":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00: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":"active","subdomain":"test-autoconfig-update","updated_at":"2025-03-26T09:36:47Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:01 GMT + - Wed, 26 Mar 2025 09:36:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d086c02-34a4-4f3d-a3ee-ccb23481a94b + - 0a35b661-9537-4b65-948d-8f44d070dda0 status: 200 OK code: 200 - duration: 84.322345ms + duration: 86.265667ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1205 + content_length: 1181 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.851655107Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:49.933627137Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' headers: Content-Length: - - "1205" + - "1181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:01 GMT + - Wed, 26 Mar 2025 09:36:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97b93a42-92d2-414c-9d11-db4adbeea300 + - 9c225eeb-f762-4572-8c6a-21fb80de5b2c status: 200 OK code: 200 - duration: 23.425253ms + duration: 904.855333ms - id: 8 request: proto: HTTP/1.1 @@ -412,7 +412,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: @@ -421,20 +421,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":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00: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":"active","subdomain":"test-autoconfig-update","updated_at":"2025-03-26T09:36:47Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:02 GMT + - Wed, 26 Mar 2025 09:36:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e62abb8-8669-425d-9532-5d6e4587b3f3 + - 286c440f-5fa9-4a67-8329-4b20ce63a10f status: 200 OK code: 200 - duration: 60.289395ms + duration: 83.904417ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1205 + content_length: 1181 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.234703441Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:51.211382527Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' headers: Content-Length: - - "1205" + - "1181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:02 GMT + - Wed, 26 Mar 2025 09:36:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad2f167a-b1e5-4b53-b246-5e890ac171b3 + - d485455f-1df9-432c-9bf3-30d56b9d5142 status: 200 OK code: 200 - duration: 25.015613ms + duration: 486.553041ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: PATCH response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1204 + content_length: 1214 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.801482009Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:52.711011995Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:52.711010734Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1204" + - "1214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:03 GMT + - Wed, 26 Mar 2025 09:36:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ae5a0ed-d230-49cd-a361-4184a9b0594a + - 9fbd59d7-9b25-4789-8354-f3f6fe6a4787 status: 200 OK code: 200 - duration: 393.355416ms + duration: 3.848150417s - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1229 + content_length: 1211 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.801482Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.118195026Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:52.711011Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:56.586518403Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1229" + - "1211" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:03 GMT + - Wed, 26 Mar 2025 09:36:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1997c534-4dc8-46d2-93ed-f8131ea76827 + - c248a0c3-9b93-41d6-ade2-4ba003835037 status: 200 OK code: 200 - duration: 22.510307ms + duration: 613.971542ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -619,20 +619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1229 + content_length: 1211 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.801482Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.257129022Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:52.711011Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:57.473045989Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1229" + - "1211" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:03 GMT + - Wed, 26 Mar 2025 09:36:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5e3ccb4-a45b-4ca3-a8e4-a001cbc9d8ee + - 2079b898-2578-46e0-be4a-143267382c9e status: 200 OK code: 200 - duration: 21.560654ms + duration: 456.473ms - id: 13 request: proto: HTTP/1.1 @@ -659,7 +659,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: @@ -668,20 +668,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":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00: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":"active","subdomain":"test-autoconfig-update","updated_at":"2025-03-26T09:36:47Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:03 GMT + - Wed, 26 Mar 2025 09:36:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fe01e02-7fe6-4047-8ca5-b09568a45ebd + - 6ec2ec7c-bfa4-4f09-bb40-8c8275a08b9d status: 200 OK code: 200 - duration: 62.469985ms + duration: 89.627125ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -717,20 +717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1229 + content_length: 1211 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.801482Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.794528019Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:52.711011Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:58.805062835Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1229" + - "1211" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:03 GMT + - Wed, 26 Mar 2025 09:36:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83cfbf29-f1e9-4885-9e4b-1b596d32e92c + - db2553a3-14da-422b-9a90-070d9cfecd23 status: 200 OK code: 200 - duration: 185.181577ms + duration: 609.521ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -766,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1229 + content_length: 1211 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.801482Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:04.425866893Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:52.711011Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:37:01.900844993Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1229" + - "1211" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:04 GMT + - Wed, 26 Mar 2025 09:37:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,11 +787,158 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07095c7e-c4d7-4258-bc92-7e9737dcf0aa + - fe0d26f6-8dc0-40c5-9e58-fd6a3119db42 status: 200 OK code: 200 - duration: 159.778681ms + duration: 2.151563958s - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1211 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2025-03-26T09:37:33.098839Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:37:19.369429481Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1211" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 09:37:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 532a0a0e-53c7-4add-8c77-1c903ff281ba + status: 200 OK + code: 200 + duration: 2.669022167s + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1211 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2025-03-26T09:37:33.098839Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:37:35.182193287Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' + headers: + Content-Length: + - "1211" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 09:37:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c9f1e6b2-be53-45fd-9314-f3a1ea9b0acc + status: 200 OK + code: 200 + duration: 651.021083ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1228 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":"2025-03-26T09:37:35.167575Z","name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2025-03-27T10:31:35.167575Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:37:50.849689255Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + headers: + Content-Length: + - "1228" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 26 Mar 2025 09:37:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f44eccfd-88e0-4a4a-aa92-d34f33e4981a + status: 200 OK + code: 200 + duration: 614.086792ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -808,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f/revoke + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675/revoke method: POST response: proto: HTTP/2.0 @@ -817,20 +964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1001 + content_length: 1007 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:05.142078854Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":"2025-03-26T09:37:35.167575Z","name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2025-03-26T09:37:51.043909587Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "1001" + - "1007" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:05 GMT + - Wed, 26 Mar 2025 09:37:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,11 +985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eafa65b-0b1a-4d68-b161-709fee6f5c87 + - 28b730e9-f114-4ea5-a56b-c5337b603f8a status: 200 OK code: 200 - duration: 738.951458ms - - id: 17 + duration: 254.863416ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -857,8 +1004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -866,20 +1013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1153 + content_length: 1155 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.375696714Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:05.142078Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":"2025-03-26T09:37:35.167575Z","name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:37:51.594947683Z","status":"excellent"},"revoked_at":"2025-03-26T09:37:51.043909Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "1153" + - "1155" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:05 GMT + - Wed, 26 Mar 2025 09:37:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,11 +1034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b2c8ebc-ecd6-4992-aa90-f8a210c7c3ca + - a7bd4804-4964-4dae-9205-b67b2207c3ad status: 200 OK code: 200 - duration: 206.937728ms - - id: 18 + duration: 509.348667ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -906,7 +1053,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -915,20 +1062,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":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00: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":"active","subdomain":"test-autoconfig-update","updated_at":"2025-03-26T09:37:10Z"}],"total_count":1}' headers: Content-Length: - - "375" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:05 GMT + - Wed, 26 Mar 2025 09:37:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,11 +1083,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf0e233f-d9a7-47ee-89f8-df24c0355217 + - c3efe06c-fbfa-4d20-a8c1-b7c3239a34ea status: 200 OK code: 200 - duration: 77.799687ms - - id: 19 + duration: 82.950375ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -955,7 +1102,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-autoconfig-update.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -975,9 +1122,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:05 GMT + - Wed, 26 Mar 2025 09:37:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,11 +1132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 233b360c-cca9-4a24-9ba0-70ddedd088f8 + - c2daab99-8034-4c2b-9cd8-30446b646ca8 status: 200 OK code: 200 - duration: 280.907359ms - - id: 20 + duration: 134.419625ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1006,8 +1153,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f/revoke + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675/revoke method: POST response: proto: HTTP/2.0 @@ -1015,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 998 + content_length: 1004 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:05.142078Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":"2025-03-26T09:37:35.167575Z","name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2025-03-26T09:37:51.043909Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "998" + - "1004" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:05 GMT + - Wed, 26 Mar 2025 09:37:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,11 +1183,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 649ab5ab-8b89-4a6b-a277-f6ac7e038cc5 + - f62d182f-f6be-4378-85de-5fced3255daa status: 200 OK code: 200 - duration: 25.860557ms - - id: 21 + duration: 22.350375ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1055,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/a6bb03eb-872c-41bc-bf42-c93f8db76675 method: GET response: proto: HTTP/2.0 @@ -1064,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1153 + content_length: 1155 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:06.024977783Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:05.142078Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:36:43.296581Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlymjcX0FKGMe/deF6vnqkj1dA4qwJQZThkbgUDi/Iht4PuZBk1sRLDzi5qgwRCos4Us5GBacxkinEh+EHgNNhqOYQ9ZDCWelL+29qKps/LoeNpdKKLVtidyWjD5GUw1zwYkYgoJgFNbXoGbYO1wpCBC3VB6f2cWGKo3QAufoFvY7ONBxFf0Z0gj6LF07ShuUIiEJcDvcYc0kcgwpC0V2PHHEij633Ao2ItBr1oZxBPQegUS/jXBlv6Ioxtg6KLLcJCguCR7W/MLHGYLmkViT0e7I5MT3FJU9Jt7VUFRfWWfyUKv5zllUU1Kf+grHKUTr7YbzMT0YvK0MhD+Yng8+lQIDAQAB","id":"a6bb03eb-872c-41bc-bf42-c93f8db76675","last_error":null,"last_valid_at":"2025-03-26T09:37:35.167575Z","name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:37:52.387655598Z","status":"excellent"},"revoked_at":"2025-03-26T09:37:51.043909Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "1153" + - "1155" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:06 GMT + - Wed, 26 Mar 2025 09:37:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,7 +1232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a216a968-45e6-400f-b919-3337682d81f1 + - b8ea0490-328c-46f4-a9ff-e7869b7c7b08 status: 200 OK code: 200 - duration: 195.33801ms + duration: 552.385458ms diff --git a/internal/services/tem/testdata/domain-autoconfig.cassette.yaml b/internal/services/tem/testdata/domain-autoconfig.cassette.yaml index 99c59e7d9a..8a761605cd 100644 --- a/internal/services/tem/testdata/domain-autoconfig.cassette.yaml +++ b/internal/services/tem/testdata/domain-autoconfig.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig.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: - - Fri, 20 Sep 2024 13:01:00 GMT + - Wed, 26 Mar 2025 09:35:17 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: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 068779f3-3160-42aa-9a1c-7d65bc475567 + - ec05d30b-8287-44a6-8eeb-e52aad2c676b status: 200 OK code: 200 - duration: 85.631601ms + duration: 238.400625ms - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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: 335 + content_length: 324 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-autoconfig","updated_at":"2024-09-20T13:01: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-autoconfig","updated_at":"2025-03-26T09:35:17Z"}' headers: Content-Length: - - "335" + - "324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:01 GMT + - Wed, 26 Mar 2025 09:35:17 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: - - 33052c13-e507-4aa8-bf18-d18b563cc8d1 + - 3d2fdd9c-878c-4473-a079-6e6057ea2597 status: 200 OK code: 200 - duration: 338.686582ms + duration: 299.246875ms - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 368 + content_length: 356 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-autoconfig","updated_at":"2024-09-20T13:01: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-autoconfig","updated_at":"2025-03-26T09:35:17Z"}],"total_count":1}' headers: Content-Length: - - "368" + - "356" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:01 GMT + - Wed, 26 Mar 2025 09:35:18 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: - - 85cbd1d6-53e4-4428-89ea-0681d8abb1c6 + - d0b8d82c-a648-474e-84e3-9f02d3c8aadc status: 200 OK code: 200 - duration: 62.969285ms + duration: 76.745542ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains method: POST response: @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1215 + content_length: 1197 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.718838Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.785445309Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:21.728502Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:35:21.843970969Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1215" + - "1197" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:01 GMT + - Wed, 26 Mar 2025 09:35:21 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: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02a812cd-6765-4677-9862-aa3da6ad0b59 + - 44d59d65-2746-413b-9020-f2afe0410ce1 status: 200 OK code: 200 - duration: 620.436044ms + duration: 3.858963083s - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1215 + content_length: 1197 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.718838Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.039482177Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:21.728502Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:35:24.355728640Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1215" + - "1197" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:02 GMT + - Wed, 26 Mar 2025 09:35:24 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: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3441a3c4-8187-438f-af76-4a4762648573 + - bbebc10d-241a-4a64-b268-6b3cf8dd5db7 status: 200 OK code: 200 - duration: 253.753333ms + duration: 2.537975625s - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1215 + content_length: 1197 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.718838Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.090415478Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:21.728502Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:35:27.298935295Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1215" + - "1197" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:02 GMT + - Wed, 26 Mar 2025 09:35:27 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: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a053280b-3a04-4b53-810c-78d22c4b6453 + - 6224a1a4-dec5-4570-bcbb-e21e8644bccd status: 200 OK code: 200 - duration: 28.691642ms + duration: 2.962727375s - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -325,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1075 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.117428004Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:21.728502Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1092" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:02 GMT + - Wed, 26 Mar 2025 09:35:27 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: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa6f0239-de08-4c50-b535-96da4094c377 + - 84e44632-8489-4839-ba17-c27d5faf0d2f status: 200 OK code: 200 - duration: 73.729744ms + duration: 77.981958ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -376,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1075 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.699342823Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:21.728502Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1092" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:02 GMT + - Wed, 26 Mar 2025 09:35:28 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: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc997be7-1d86-413a-b39c-578d47fde363 + - 9094ed2a-10c9-46b7-b01e-78e966d48f62 status: 200 OK code: 200 - duration: 49.46482ms + duration: 32.404167ms - id: 8 request: proto: HTTP/1.1 @@ -418,8 +418,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -427,20 +427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1075 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:03.743216700Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:21.728502Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1092" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:03 GMT + - Wed, 26 Mar 2025 09:35:29 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: @@ -448,10 +448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c388839e-4db1-4e85-b6a1-0092a9d06d2f + - 3227d973-8220-4160-b78a-31962f336c8a status: 200 OK code: 200 - duration: 47.207297ms + duration: 87.0495ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -478,20 +478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1078 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.791410456Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:31.167811461Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1092" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:05 GMT + - Wed, 26 Mar 2025 09:35:31 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: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3d9824b-1c0b-4ee1-bbe3-6f9cb74f8763 + - e26a8839-fc94-4638-873b-acf5f3519a7d status: 200 OK code: 200 - duration: 38.160162ms + duration: 98.759542ms - id: 10 request: proto: HTTP/1.1 @@ -520,8 +520,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -529,20 +529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1075 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:09.873861563Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:31.167811Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1092" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:09 GMT + - Wed, 26 Mar 2025 09:35: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: @@ -550,10 +550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2867bf49-4886-4cab-b66d-baaa456eb7da + - ea1cd00b-897c-4955-b8ca-323ab63da83e status: 200 OK code: 200 - duration: 78.96527ms + duration: 79.591084ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1078 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:17.950646162Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:43.365783196Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1092" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:17 GMT + - Wed, 26 Mar 2025 09:35: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: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04e23c61-20f6-42e5-9b81-e4bed647b995 + - 49ffb6cf-e536-4b5a-adfe-b6703e2a8c3f status: 200 OK code: 200 - duration: 79.195349ms + duration: 197.998625ms - id: 12 request: proto: HTTP/1.1 @@ -622,8 +622,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1078 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:28.035059061Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:35:53.538583006Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"autoconfiguring"}' headers: Content-Length: - - "1092" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:28 GMT + - Wed, 26 Mar 2025 09:35: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: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc224dee-4c44-47ef-a5d0-0e7aa034886f + - 58a64e84-7cfa-4b16-81cd-ed74f16195e3 status: 200 OK code: 200 - duration: 85.953591ms + duration: 88.018583ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 1092 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:38.088769359Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:56.061205Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' headers: Content-Length: - "1092" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:38 GMT + - Wed, 26 Mar 2025 09:36: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: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15419050-5c03-45e4-ba73-b86432d53ae4 + - 0e3c4e13-0207-4d6a-a5d1-dd1dc0960d93 status: 200 OK code: 200 - duration: 62.077398ms + duration: 119.776542ms - id: 14 request: proto: HTTP/1.1 @@ -724,8 +724,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/check method: POST response: proto: HTTP/2.0 @@ -733,20 +733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1112 + content_length: 1092 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:56.061205Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' headers: Content-Length: - - "1112" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:48 GMT + - Wed, 26 Mar 2025 09:36: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: @@ -754,10 +754,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daaa40f0-c40b-44be-8d37-a422d91b43d6 + - 17b22934-bdcf-4d30-b521-fc4e0979a28e status: 200 OK code: 200 - duration: 68.016699ms + duration: 42.403542ms - id: 15 request: proto: HTTP/1.1 @@ -773,8 +773,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -782,20 +782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1238 + content_length: 1214 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:48.214640232Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:56.061205Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:04.514668655Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' headers: Content-Length: - - "1238" + - "1214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:48 GMT + - Wed, 26 Mar 2025 09:36:04 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: @@ -803,10 +803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5723dad-8c7f-42a4-9158-27f5003c7240 + - 0536acef-2482-4ba4-a488-ecbe99e933ea status: 200 OK code: 200 - duration: 30.087739ms + duration: 879.330417ms - id: 16 request: proto: HTTP/1.1 @@ -822,8 +822,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -831,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1238 + content_length: 1214 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:48.392363011Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:56.061205Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:05.110113988Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' headers: Content-Length: - - "1238" + - "1214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:48 GMT + - Wed, 26 Mar 2025 09:36:05 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: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dbf112e-d942-4db2-945f-c7d15a57e4b8 + - 4d073647-7af4-4e54-9148-30cab3f59c18 status: 200 OK code: 200 - duration: 20.275831ms + duration: 392.523458ms - id: 17 request: proto: HTTP/1.1 @@ -871,7 +871,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: @@ -880,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 368 + content_length: 356 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-autoconfig","updated_at":"2024-09-20T13:01: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-autoconfig","updated_at":"2025-03-26T09:35:57Z"}],"total_count":1}' headers: Content-Length: - - "368" + - "356" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:48 GMT + - Wed, 26 Mar 2025 09:36:05 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: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92725340-3e9e-4a6a-a4f6-5299be549b6d + - d4dd16d4-51f9-4339-b115-7f6ce82568ea status: 200 OK code: 200 - duration: 77.085821ms + duration: 94.889625ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -929,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1238 + content_length: 1214 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:48.833796401Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:56.061205Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:06.246839179Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' headers: Content-Length: - - "1238" + - "1214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:48 GMT + - Wed, 26 Mar 2025 09:36:06 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: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 404d460c-550b-47f9-b332-36c0ec4356f8 + - 59bd69ab-c50c-4c94-bbcf-183ca85f482c status: 200 OK code: 200 - duration: 28.38352ms + duration: 399.661333ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -978,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1238 + content_length: 1214 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:49.040233605Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:56.061205Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:06.768253772Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' headers: Content-Length: - - "1238" + - "1214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:49 GMT + - Wed, 26 Mar 2025 09:36:06 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: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14f32799-54d8-46bb-95fb-5f934f29bebe + - 69253f70-7d46-4e22-96bc-e48fdc87484d status: 200 OK code: 200 - duration: 203.067189ms + duration: 732.172958ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -1027,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1238 + content_length: 1214 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:49.635317326Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2025-03-26T09:36:56.061205Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:08.464973941Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}' headers: Content-Length: - - "1238" + - "1214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:49 GMT + - Wed, 26 Mar 2025 09:36: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: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 624e934c-0b43-45ab-a547-0c8334e4acc7 + - 83cf5dd8-40ec-4fa5-9645-6b7cdf73a22b status: 200 OK code: 200 - duration: 30.170451ms + duration: 469.892958ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/revoke + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/revoke method: POST response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1019 + content_length: 1000 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:50.351539514Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2025-03-26T09:36:08.674933376Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "1019" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:50 GMT + - Wed, 26 Mar 2025 09:36: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: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d727323-dd61-4b2d-9e69-a9ae5326009a + - b4698efb-be27-4778-9463-62facb089dd9 status: 200 OK code: 200 - duration: 735.621313ms + duration: 193.944875ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1171 + content_length: 1148 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:50.595676097Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:50.351539Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:10.841246708Z","status":"excellent"},"revoked_at":"2025-03-26T09:36:08.674933Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "1171" + - "1148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:50 GMT + - Wed, 26 Mar 2025 09:36:10 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: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33da0391-2483-4d50-adde-43d9a0e6e8ee + - 26bf3b07-012c-4a26-b93d-5d508a268ca3 status: 200 OK code: 200 - duration: 249.677369ms + duration: 2.160248334s - id: 23 request: proto: HTTP/1.1 @@ -1167,7 +1167,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.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-autoconfig.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: @@ -1176,20 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 368 + content_length: 356 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-autoconfig","updated_at":"2024-09-20T13:01: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-autoconfig","updated_at":"2025-03-26T09:35:57Z"}],"total_count":1}' headers: Content-Length: - - "368" + - "356" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:50 GMT + - Wed, 26 Mar 2025 09:36:11 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: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5367a678-898e-4b0a-8534-a93dfa8f91aa + - fa500ab7-9d25-4572-aee4-a0cf801a0cfa status: 200 OK code: 200 - duration: 77.102965ms + duration: 87.02025ms - id: 24 request: proto: HTTP/1.1 @@ -1216,7 +1216,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-autoconfig.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: DELETE response: @@ -1236,9 +1236,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:50 GMT + - Wed, 26 Mar 2025 09:36:11 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: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc86b771-2d18-4f72-899d-3ce7deb4a99c + - fde02842-563d-409d-8453-b4283da1b6e6 status: 200 OK code: 200 - duration: 225.866254ms + duration: 214.317917ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/revoke + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880/revoke method: POST response: proto: HTTP/2.0 @@ -1276,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1016 + content_length: 997 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:50.351539Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":false,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2025-03-26T09:36:08.674933Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "1016" + - "997" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:51 GMT + - Wed, 26 Mar 2025 09:36:11 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: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 479eeff9-29fc-431d-851b-240c93926b53 + - 7ffd0e81-6765-4f2e-a653-639d77cf5812 status: 200 OK code: 200 - duration: 100.156857ms + duration: 109.654042ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/cfb50d3f-f2b6-42cd-87a2-1aa14350f880 method: GET response: proto: HTTP/2.0 @@ -1325,20 +1325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1171 + content_length: 1148 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:51.124113321Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:50.351539Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":true,"created_at":"2025-03-26T09:35:21.802187Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsGXRk03WsCt4bykTIRG22JqXRdpQ3sp/YLvvpjCDtMd9/wYptjj5IT2RvLreoQ0DpVELILQFb7a2vQAUzOFIH7R/GrujNCiIcduKDHdCopryH6BYbWGlLBmyXv6HxnwnXXL8Gp6/FyTHAemjnDkrUIkf87tgfTr991mjg7JUHXOb9x80UDt+v13GEon6bNx4GlCS2oxtuu6D5H2hfG62pt6Gmpkg3xfnoJHcONU4ldwBtYqzE1+eD580hHCud5lAjCtUHlYSW9cSBE4Zn2iwwLTaJON0BPyjbnYpNdpx1vcG60w02WJVz4Z5O6QwL2sV7VXVuwctdIBI7YNhnxbsrwIDAQAB","id":"cfb50d3f-f2b6-42cd-87a2-1aa14350f880","last_error":null,"last_valid_at":"2025-03-26T09:35:56.061205Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2025-03-26T09:36:11.815393185Z","status":"excellent"},"revoked_at":"2025-03-26T09:36:08.674933Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "1171" + - "1148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Sep 2024 13:01:51 GMT + - Wed, 26 Mar 2025 09:36:11 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: @@ -1346,7 +1346,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d71d9b6-61e3-4323-8219-579ef1dacdd5 + - 57283efc-ae55-4986-a5ef-a194b335485a status: 200 OK code: 200 - duration: 73.580086ms + duration: 593.278917ms