diff --git a/internal/services/tem/domain_test.go b/internal/services/tem/domain_test.go index c8a21c444..8a5314298 100644 --- a/internal/services/tem/domain_test.go +++ b/internal/services/tem/domain_test.go @@ -73,6 +73,7 @@ func TestAccDomain_Tos(t *testing.T) { func TestAccDomain_Autoconfig(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + subDomainName := "test-autoconfig" resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, @@ -81,8 +82,14 @@ func TestAccDomain_Autoconfig(t *testing.T) { Steps: []resource.TestStep{ { Config: fmt.Sprintf(` + + resource "scaleway_domain_zone" "test" { + domain = "%s" + subdomain = "%s" + } + resource scaleway_tem_domain cr01 { - name = "%s" + name = scaleway_domain_zone.test.id accept_tos = true autoconfig = true } @@ -93,13 +100,13 @@ func TestAccDomain_Autoconfig(t *testing.T) { timeout = 3600 } - `, domainNameValidation), + `, domainNameValidation, subDomainName), Check: resource.ComposeTestCheckFunc( isDomainPresent(tt, "scaleway_tem_domain.cr01"), - resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "name", domainNameValidation), + resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "name", subDomainName+"."+domainNameValidation), resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "autoconfig", "true"), resource.TestCheckResourceAttrSet("scaleway_tem_domain.cr01", "dmarc_config"), - resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "dmarc_name", "_dmarc"), + resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "dmarc_name", "_dmarc"+"."+subDomainName), resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "last_error", ""), // last_error is deprecated acctest.CheckResourceAttrUUID("scaleway_tem_domain.cr01", "id"), resource.TestCheckResourceAttr("scaleway_tem_domain_validation.valid", "validated", "true"), @@ -112,6 +119,7 @@ func TestAccDomain_Autoconfig(t *testing.T) { func TestAccDomain_AutoconfigUpdate(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + subDomainName := "test-autoconfig-update" resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, @@ -120,32 +128,42 @@ func TestAccDomain_AutoconfigUpdate(t *testing.T) { Steps: []resource.TestStep{ { Config: fmt.Sprintf(` + resource "scaleway_domain_zone" "test" { + domain = "%s" + subdomain = "%s" + } + resource scaleway_tem_domain cr01 { - name = "%s" + name = scaleway_domain_zone.test.id accept_tos = true autoconfig = false } - `, domainNameValidation), + `, domainNameValidation, subDomainName), Check: resource.ComposeTestCheckFunc( isDomainPresent(tt, "scaleway_tem_domain.cr01"), - resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "name", domainNameValidation), + resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "name", subDomainName+"."+domainNameValidation), resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "autoconfig", "false"), resource.TestCheckResourceAttrSet("scaleway_tem_domain.cr01", "dmarc_config"), - resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "dmarc_name", "_dmarc"), + resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "dmarc_name", "_dmarc"+"."+subDomainName), resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "last_error", ""), // last_error is deprecated acctest.CheckResourceAttrUUID("scaleway_tem_domain.cr01", "id"), ), }, { Config: fmt.Sprintf(` + resource "scaleway_domain_zone" "test" { + domain = "%s" + subdomain = "%s" + } + resource scaleway_tem_domain cr01 { - name = "%s" + name = scaleway_domain_zone.test.id accept_tos = true autoconfig = true } - `, domainNameValidation), + `, domainNameValidation, subDomainName), Check: resource.ComposeTestCheckFunc( isDomainPresent(tt, "scaleway_tem_domain.cr01"), resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "autoconfig", "true"), diff --git a/internal/services/tem/domain_validation_test.go b/internal/services/tem/domain_validation_test.go index 977f9bf7f..ec4a64228 100644 --- a/internal/services/tem/domain_validation_test.go +++ b/internal/services/tem/domain_validation_test.go @@ -13,6 +13,7 @@ const domainNameValidation = "scaleway-terraform.com" func TestAccDomainValidation_NoValidation(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + subDomainName := "validation-no-validation" resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, @@ -21,8 +22,14 @@ func TestAccDomainValidation_NoValidation(t *testing.T) { Steps: []resource.TestStep{ { Config: fmt.Sprintf(` + + resource "scaleway_domain_zone" "test" { + domain = "%s" + subdomain = "%s" + } + resource scaleway_tem_domain cr01 { - name = "%s" + name = scaleway_domain_zone.test.id accept_tos = true } @@ -31,7 +38,7 @@ func TestAccDomainValidation_NoValidation(t *testing.T) { region = scaleway_tem_domain.cr01.region timeout = 1 } - `, domainNameValidation), + `, domainNameValidation, subDomainName), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_tem_domain_validation.valid", "validated", "false"), ), @@ -43,6 +50,7 @@ func TestAccDomainValidation_NoValidation(t *testing.T) { func TestAccDomainValidation_Validation(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + subDomainName := "validation-validation" resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, @@ -51,8 +59,14 @@ func TestAccDomainValidation_Validation(t *testing.T) { Steps: []resource.TestStep{ { Config: fmt.Sprintf(` + + resource "scaleway_domain_zone" "test" { + domain = "%s" + subdomain = "%s" + } + resource scaleway_tem_domain cr01 { - name = "%s" + name = scaleway_domain_zone.test.id accept_tos = true autoconfig = true } @@ -62,7 +76,7 @@ func TestAccDomainValidation_Validation(t *testing.T) { region = scaleway_tem_domain.cr01.region timeout = 3600 } - `, domainNameValidation), + `, domainNameValidation, subDomainName), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_tem_domain_validation.valid", "validated", "true"), ), diff --git a/internal/services/tem/testdata/data-source-domain-basic.cassette.yaml b/internal/services/tem/testdata/data-source-domain-basic.cassette.yaml index 2797c38e0..98a611c7f 100644 --- a/internal/services/tem/testdata/data-source-domain-basic.cassette.yaml +++ b/internal/services/tem/testdata/data-source-domain-basic.cassette.yaml @@ -1,3 +1,1287 @@ --- version: 2 -interactions: [] +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"terraform-ds.test.local","accept_tos":true,"autoconfig":false}' + form: {} + headers: + 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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.020370798Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 939e2582-514d-47ea-9ae6-51891ea27221 + status: 200 OK + code: 200 + duration: 529.135935ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.043968598Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d0763fe-fdf8-4d4d-9560-ff92b76939bf + status: 200 OK + code: 200 + duration: 56.346579ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.121253892Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30af1551-d398-4ac0-a922-723d5d98ffa9 + status: 200 OK + code: 200 + duration: 21.710575ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1204 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.243328063Z","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"}],"total_count":1}' + headers: + Content-Length: + - "1204" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15cf8d9b-f754-4462-a9f0-8b325f5393d8 + status: 200 OK + code: 200 + duration: 144.181043ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.266652109Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4052eb12-77ef-4998-a04c-75ea4374c81c + status: 200 OK + code: 200 + duration: 24.404118ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.421180533Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a98e9940-c50a-42a5-91f8-55d66c058b4b + status: 200 OK + code: 200 + duration: 31.772765ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.449860852Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c63d44da-3041-4a51-97b6-a4023c4ac281 + status: 200 OK + code: 200 + duration: 22.889439ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.602178401Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18a30c9a-bfde-43d0-9f30-9fa59e2eff46 + status: 200 OK + code: 200 + duration: 23.041731ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1204 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.667442191Z","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"}],"total_count":1}' + headers: + Content-Length: + - "1204" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e348d1b-e1d4-4d99-8e16-b388476e2a76 + status: 200 OK + code: 200 + duration: 91.910437ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.694631303Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c87ed09-b39c-424b-a0ef-a9db4ad0aa4a + status: 200 OK + code: 200 + duration: 22.811585ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.135645333Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c78f5bb3-91d0-4dc7-9ede-13a07b3ff9ab + status: 200 OK + code: 200 + duration: 224.373746ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.163302970Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12e1c242-ab0c-4610-9b48-4babb7c2212a + status: 200 OK + code: 200 + duration: 53.102727ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1204 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.329440826Z","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"}],"total_count":1}' + headers: + Content-Length: + - "1204" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f5a90d8-258e-45cd-9b2c-83dc2f2596aa + status: 200 OK + code: 200 + duration: 188.437146ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.351745348Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 82b020bb-c09b-4db7-beeb-62737475885d + status: 200 OK + code: 200 + duration: 21.750537ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1204 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.622625691Z","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"}],"total_count":1}' + headers: + Content-Length: + - "1204" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 309bdb5c-9754-47ce-9426-1941e9953297 + status: 200 OK + code: 200 + duration: 153.870014ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.639433156Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 93240611-8c4a-489d-b8c6-a10196b0cb63 + status: 200 OK + code: 200 + duration: 172.322093ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.649881649Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 185cad2d-a957-4a6c-a999-8a971185c7c4 + status: 200 OK + code: 200 + duration: 59.670147ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1173 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","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.207739006Z","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: + - "1173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - adc39bf3-2d76-4891-b15d-a91262234e61 + status: 200 OK + code: 200 + duration: 195.691198ms + - id: 18 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 979 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","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:04.876039127Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "979" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12f7aafd-229d-4f3f-9b56-00794311778a + status: 200 OK + code: 200 + duration: 670.567403ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1132 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","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.052441037Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:04.876039Z","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: + - "1132" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47564954-9492-48e5-b9b7-d37d17180353 + status: 200 OK + code: 200 + duration: 197.207827ms + - id: 20 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 976 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","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:04.876039Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "976" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8571cbf-e6c8-43de-9f04-cc355bb56d33 + status: 200 OK + code: 200 + duration: 64.44296ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1132 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","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.223145908Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:04.876039Z","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: + - "1132" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c83154ee-dce0-4abc-9b72-fa72eb65d979 + status: 200 OK + code: 200 + duration: 24.536238ms + - id: 22 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 976 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","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:04.876039Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "976" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d520d9d-3921-4dbb-8ae5-ff9c43d09324 + status: 200 OK + code: 200 + duration: 84.86753ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1132 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","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.330298641Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:04.876039Z","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: + - "1132" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e8cea170-ade8-4a2f-95e7-17723e38bd63 + status: 200 OK + code: 200 + duration: 21.376522ms + - id: 24 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 976 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","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:04.876039Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "976" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ed6034e-1cbf-41c6-97b8-de713b9ecf47 + status: 200 OK + code: 200 + duration: 22.508556ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1132 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","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.525138788Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:04.876039Z","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: + - "1132" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92ab91a1-4083-4be4-a9b7-38dfa302072a + status: 200 OK + code: 200 + duration: 174.288085ms diff --git a/internal/services/tem/testdata/data-source-domain-reputation.cassette.yaml b/internal/services/tem/testdata/data-source-domain-reputation.cassette.yaml index 2797c38e0..6a38329cd 100644 --- a/internal/services/tem/testdata/data-source-domain-reputation.cassette.yaml +++ b/internal/services/tem/testdata/data-source-domain-reputation.cassette.yaml @@ -1,3 +1,542 @@ --- version: 2 -interactions: [] +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1574 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}],"total_count":1}' + headers: + Content-Length: + - "1574" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 344b5f90-327b-4d00-a17d-47691c52f88c + status: 200 OK + code: 200 + duration: 252.169695ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1543 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}' + headers: + Content-Length: + - "1543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a992ca54-982b-4a6f-b2b7-9406e69ecd15 + status: 200 OK + code: 200 + duration: 50.620691ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1574 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}],"total_count":1}' + headers: + Content-Length: + - "1574" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba48e327-e926-4052-9237-672d3d5e3546 + status: 200 OK + code: 200 + duration: 150.505318ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1543 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}' + headers: + Content-Length: + - "1543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa45b7aa-a4cf-4a5b-805f-975f41a71832 + status: 200 OK + code: 200 + duration: 38.699281ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1543 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}' + headers: + Content-Length: + - "1543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73fd2272-4e5b-4e96-a5b2-55f02a2e94dc + status: 200 OK + code: 200 + duration: 25.265667ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1574 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}],"total_count":1}' + headers: + Content-Length: + - "1574" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b3c32fc-9d53-425c-b05d-36da62075663 + status: 200 OK + code: 200 + duration: 209.928048ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1543 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}' + headers: + Content-Length: + - "1543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9518b57f-1f89-41d6-9e0e-aa5ce462e4da + status: 200 OK + code: 200 + duration: 47.824737ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1574 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}],"total_count":1}' + headers: + Content-Length: + - "1574" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - adcf98f3-d3da-47db-8eb5-c0b81e10bce9 + status: 200 OK + code: 200 + duration: 112.288323ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1543 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}' + headers: + Content-Length: + - "1543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac256140-72ff-4213-9e93-c653c145eed7 + status: 200 OK + code: 200 + duration: 25.03733ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1574 + uncompressed: false + body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}],"total_count":1}' + headers: + Content-Length: + - "1574" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76e7f6d3-979a-4b4e-bf6f-9d6821d76cb4 + status: 200 OK + code: 200 + duration: 133.895658ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1543 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","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":"invalid"}' + headers: + Content-Length: + - "1543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - feed43df-bc81-447f-b92c-8541637d5813 + status: 200 OK + code: 200 + duration: 138.902841ms diff --git a/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml b/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml index edd1e6b7c..83e2bcdd4 100644 --- a/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml +++ b/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml @@ -6,13 +6,162 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 129 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/domain/v2beta1/dns-zones?dns_zones=test-autoconfig-update.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: 33 + uncompressed: false + body: '{"dns_zones":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:00:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b125db2c-a067-4e56-909c-33b21bfe7a4d + status: 200 OK + code: 200 + duration: 77.426508ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 124 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domain":"scaleway-terraform.com","subdomain":"test-autoconfig-update","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.23.0; darwin; amd64) 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: 342 + 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"}' + headers: + Content-Length: + - "342" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35fbce92-204b-48a1-8243-1f805760075b + status: 200 OK + code: 200 + duration: 554.894449ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 375 + 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}' + headers: + Content-Length: + - "375" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f0fc375-c099-4537-b7f4-3751293d4d0e + status: 200 OK + code: 200 + duration: 121.680384ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"scaleway-terraform.com","accept_tos":true,"autoconfig":false}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"test-autoconfig-update.scaleway-terraform.com","accept_tos":true,"autoconfig":false}' form: {} headers: Content-Type: @@ -27,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1159 + content_length: 1205 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:49.408503041Z","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":"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"}' headers: Content-Length: - - "1159" + - "1205" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:49 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +197,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3526ca8f-536d-457b-b3e5-92e831895cc0 + - aca52d90-2479-49fd-9c82-f000858108cd status: 200 OK code: 200 - duration: 578.292828ms - - id: 1 + duration: 460.481284ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -68,7 +217,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: GET response: proto: HTTP/2.0 @@ -76,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1159 + content_length: 1205 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:49.724324915Z","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":"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"}' headers: Content-Length: - - "1159" + - "1205" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:49 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,11 +246,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d94241fb-dc1e-4e99-be26-44a2b6c08463 + - 1ac71ef7-000e-4f3a-b561-5bb9912ab617 status: 200 OK code: 200 - duration: 299.22135ms - - id: 2 + duration: 66.851156ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -117,7 +266,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: GET response: proto: HTTP/2.0 @@ -125,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1159 + content_length: 1205 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:50.202860152Z","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":"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"}' headers: Content-Length: - - "1159" + - "1205" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:50 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,11 +295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78fcc243-2a8e-4f71-9ec6-7c068436d578 + - 75319153-e9db-491e-8f4e-667c5edc0a9e status: 200 OK code: 200 - duration: 371.528905ms - - id: 3 + duration: 295.668263ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -166,7 +315,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + 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: proto: HTTP/2.0 @@ -174,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1159 + content_length: 375 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:50.818217208Z","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: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","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}' headers: Content-Length: - - "1159" + - "375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:50 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,11 +344,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55274d30-3a49-41a1-af77-91b4b7cbe8eb + - 0d086c02-34a4-4f3d-a3ee-ccb23481a94b status: 200 OK code: 200 - duration: 331.506927ms - - id: 4 + duration: 84.322345ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -215,7 +364,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: GET response: proto: HTTP/2.0 @@ -223,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1159 + content_length: 1205 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:51.443174620Z","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":"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"}' headers: Content-Length: - - "1159" + - "1205" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:51 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,11 +393,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6268acb4-e016-43ff-8f0f-45c9fd86f0d5 + - 97b93a42-92d2-414c-9d11-db4adbeea300 status: 200 OK code: 200 - duration: 191.588494ms - - id: 5 + duration: 23.425253ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 375 + 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}' + headers: + Content-Length: + - "375" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e62abb8-8669-425d-9532-5d6e4587b3f3 + status: 200 OK + code: 200 + duration: 60.289395ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1205 + 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"}' + headers: + Content-Length: + - "1205" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ad2f167a-b1e5-4b53-b246-5e890ac171b3 + status: 200 OK + code: 200 + duration: 25.015613ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -266,7 +513,7 @@ interactions: - 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: PATCH response: proto: HTTP/2.0 @@ -274,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1158 + content_length: 1204 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:52.081949078Z","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":"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"}' headers: Content-Length: - - "1158" + - "1204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:52 GMT + - Fri, 20 Sep 2024 13:01:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,11 +542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b260699-d46d-4a89-8e8d-3949bc21aab8 + - 8ae5a0ed-d230-49cd-a361-4184a9b0594a status: 200 OK code: 200 - duration: 640.967616ms - - id: 6 + duration: 393.355416ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -315,7 +562,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: GET response: proto: HTTP/2.0 @@ -323,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1183 + content_length: 1229 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-19T13:27:52.081950Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:52.704378717Z","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":"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"}' headers: Content-Length: - - "1183" + - "1229" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:52 GMT + - Fri, 20 Sep 2024 13:01:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,11 +591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc3b494f-ac22-4597-b471-354ed4d498af + - 1997c534-4dc8-46d2-93ed-f8131ea76827 status: 200 OK code: 200 - duration: 306.083146ms - - id: 7 + duration: 22.510307ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -364,7 +611,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: GET response: proto: HTTP/2.0 @@ -372,20 +619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1183 + content_length: 1229 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-19T13:27:52.081950Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:53.133971171Z","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":"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"}' headers: Content-Length: - - "1183" + - "1229" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:53 GMT + - Fri, 20 Sep 2024 13:01:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,11 +640,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1fbaf40-8947-43a6-961b-ae2a8adb9f9a + - c5e3ccb4-a45b-4ca3-a8e4-a001cbc9d8ee status: 200 OK code: 200 - duration: 273.941616ms - - id: 8 + duration: 21.560654ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -413,7 +660,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + 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: proto: HTTP/2.0 @@ -421,20 +668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1183 + content_length: 375 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-19T13:27:52.081950Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:53.672566361Z","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: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","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}' headers: Content-Length: - - "1183" + - "375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:53 GMT + - Fri, 20 Sep 2024 13:01:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,11 +689,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7f51c22-2508-40b5-b4a0-4dadf84b8867 + - 9fe01e02-7fe6-4047-8ca5-b09568a45ebd status: 200 OK code: 200 - duration: 190.573858ms - - id: 9 + duration: 62.469985ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -462,7 +709,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: GET response: proto: HTTP/2.0 @@ -470,20 +717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1183 + content_length: 1229 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-19T13:27:52.081950Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T13:27:54.342460964Z","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":"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"}' headers: Content-Length: - - "1183" + - "1229" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:54 GMT + - Fri, 20 Sep 2024 13:01:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,11 +738,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe9a05e9-758a-4992-8767-2e6fcfe75da9 + - 83cfbf29-f1e9-4885-9e4b-1b596d32e92c status: 200 OK code: 200 - duration: 325.482887ms - - id: 10 + duration: 185.181577ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1229 + 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"}' + headers: + Content-Length: + - "1229" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07095c7e-c4d7-4258-bc92-7e9737dcf0aa + status: 200 OK + code: 200 + duration: 159.778681ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -513,7 +809,7 @@ interactions: - 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/4478a51e-f59e-4394-9a10-1d91539196fe/revoke + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f/revoke method: POST response: proto: HTTP/2.0 @@ -521,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 978 + content_length: 1001 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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-19T13:27:55.118046160Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + 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"}' headers: Content-Length: - - "978" + - "1001" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:55 GMT + - Fri, 20 Sep 2024 13:01:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,11 +838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc9e2dd4-576e-4079-b985-fc6beec53f5f + - 8eafa65b-0b1a-4d68-b161-709fee6f5c87 status: 200 OK code: 200 - duration: 707.778006ms - - id: 11 + duration: 738.951458ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -562,7 +858,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: GET response: proto: HTTP/2.0 @@ -570,20 +866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1130 + content_length: 1153 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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-19T13:27:55.356460416Z","status":"excellent"},"revoked_at":"2024-09-19T13:27:55.118046Z","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":"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"}' headers: Content-Length: - - "1130" + - "1153" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:55 GMT + - Fri, 20 Sep 2024 13:01:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,11 +887,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebf2a00a-10dc-495b-b242-1ee1672c9915 + - 3b2c8ebc-ecd6-4992-aa90-f8a210c7c3ca status: 200 OK code: 200 - duration: 315.771875ms - - id: 12 + duration: 206.937728ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 375 + 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}' + headers: + Content-Length: + - "375" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf0e233f-d9a7-47ee-89f8-df24c0355217 + status: 200 OK + code: 200 + duration: 77.799687ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + 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: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 233b360c-cca9-4a24-9ba0-70ddedd088f8 + status: 200 OK + code: 200 + duration: 280.907359ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -613,7 +1007,7 @@ interactions: - 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/4478a51e-f59e-4394-9a10-1d91539196fe/revoke + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f/revoke method: POST response: proto: HTTP/2.0 @@ -621,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 975 + content_length: 998 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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-19T13:27:55.118046Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + 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"}' headers: Content-Length: - - "975" + - "998" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:55 GMT + - Fri, 20 Sep 2024 13:01:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,11 +1036,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78b54ba5-28e0-4ae5-98c0-480971a448bd + - 649ab5ab-8b89-4a6b-a277-f6ac7e038cc5 status: 200 OK code: 200 - duration: 75.744903ms - - id: 13 + duration: 25.860557ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -662,7 +1056,7 @@ interactions: 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/4478a51e-f59e-4394-9a10-1d91539196fe + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f method: GET response: proto: HTTP/2.0 @@ -670,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1130 + content_length: 1153 uncompressed: false - body: '{"autoconfig":true,"created_at":"2024-09-19T13:27:49.289698Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnKZoG7pSjXGpeXU2jO3wVW2ieeAaqr325PMsdOrrp3Fui+aMjapqg1OephZ2z1ssyfOTZKqZbGKfchpTZrjnVBeDSswc47+/63JeXIYTZ0abcAcFrXkgJ4mfM3RPOE9TRR9AGyUjBpwwji6pPbs/1yDu4o2V8obYRUc4vuxh7a6b6iJlA/lORGyoLJ11jas7PLkYPbpQGuMuXpkPZFRsjr2mHfEGbb5+IlCDxP/9fVQyyQWTnG5qkSuxPA9hQveJJR9q017WrilEhLOBFX+UIfADsJgbzTIlmJOKLwqbnQDokpRtB6JcDmnwNnmvcmY2Qi5z6rlR7ZE3rsdm6cTC6QIDAQAB","id":"4478a51e-f59e-4394-9a10-1d91539196fe","last_error":null,"last_valid_at":null,"name":"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-19T13:27:55.768926564Z","status":"excellent"},"revoked_at":"2024-09-19T13:27:55.118046Z","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":"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"}' headers: Content-Length: - - "1130" + - "1153" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 13:27:55 GMT + - Fri, 20 Sep 2024 13:01:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,7 +1085,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd4d3e15-ead5-4682-ba0d-1b6631647354 + - a216a968-45e6-400f-b919-3337682d81f1 status: 200 OK code: 200 - duration: 197.316747ms + duration: 195.33801ms diff --git a/internal/services/tem/testdata/domain-autoconfig.cassette.yaml b/internal/services/tem/testdata/domain-autoconfig.cassette.yaml index 2797c38e0..99c59e7d9 100644 --- a/internal/services/tem/testdata/domain-autoconfig.cassette.yaml +++ b/internal/services/tem/testdata/domain-autoconfig.cassette.yaml @@ -1,3 +1,1352 @@ --- version: 2 -interactions: [] +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 33 + uncompressed: false + body: '{"dns_zones":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 068779f3-3160-42aa-9a1c-7d65bc475567 + status: 200 OK + code: 200 + duration: 85.631601ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 117 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domain":"scaleway-terraform.com","subdomain":"test-autoconfig","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.23.0; darwin; amd64) 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: 335 + 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"}' + headers: + Content-Length: + - "335" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33052c13-e507-4aa8-bf18-d18b563cc8d1 + status: 200 OK + code: 200 + duration: 338.686582ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 368 + 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}' + headers: + Content-Length: + - "368" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 85cbd1d6-53e4-4428-89ea-0681d8abb1c6 + status: 200 OK + code: 200 + duration: 62.969285ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 144 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"test-autoconfig.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.23.0; darwin; amd64) 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: 1215 + 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"}' + headers: + Content-Length: + - "1215" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02a812cd-6765-4677-9862-aa3da6ad0b59 + status: 200 OK + code: 200 + duration: 620.436044ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1215 + 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"}' + headers: + Content-Length: + - "1215" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3441a3c4-8187-438f-af76-4a4762648573 + status: 200 OK + code: 200 + duration: 253.753333ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1215 + 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"}' + headers: + Content-Length: + - "1215" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a053280b-3a04-4b53-810c-78d22c4b6453 + status: 200 OK + code: 200 + duration: 28.691642ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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: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"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa6f0239-de08-4c50-b535-96da4094c377 + status: 200 OK + code: 200 + duration: 73.729744ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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: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"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc997be7-1d86-413a-b39c-578d47fde363 + status: 200 OK + code: 200 + duration: 49.46482ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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: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"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c388839e-4db1-4e85-b6a1-0092a9d06d2f + status: 200 OK + code: 200 + duration: 47.207297ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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: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"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3d9824b-1c0b-4ee1-bbe3-6f9cb74f8763 + status: 200 OK + code: 200 + duration: 38.160162ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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: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"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2867bf49-4886-4cab-b66d-baaa456eb7da + status: 200 OK + code: 200 + duration: 78.96527ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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: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"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04e23c61-20f6-42e5-9b81-e4bed647b995 + status: 200 OK + code: 200 + duration: 79.195349ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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: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"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc224dee-4c44-47ef-a5d0-0e7aa034886f + status: 200 OK + code: 200 + duration: 85.953591ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15419050-5c03-45e4-ba73-b86432d53ae4 + status: 200 OK + code: 200 + duration: 62.077398ms + - 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1112 + 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"}' + headers: + Content-Length: + - "1112" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - daaa40f0-c40b-44be-8d37-a422d91b43d6 + status: 200 OK + code: 200 + duration: 68.016699ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1238 + 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"}' + headers: + Content-Length: + - "1238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5723dad-8c7f-42a4-9158-27f5003c7240 + status: 200 OK + code: 200 + duration: 30.087739ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1238 + 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"}' + headers: + Content-Length: + - "1238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2dbf112e-d942-4db2-945f-c7d15a57e4b8 + status: 200 OK + code: 200 + duration: 20.275831ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 368 + 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}' + headers: + Content-Length: + - "368" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92725340-3e9e-4a6a-a4f6-5299be549b6d + status: 200 OK + code: 200 + duration: 77.085821ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1238 + 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"}' + headers: + Content-Length: + - "1238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 404d460c-550b-47f9-b332-36c0ec4356f8 + status: 200 OK + code: 200 + duration: 28.38352ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1238 + 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"}' + headers: + Content-Length: + - "1238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14f32799-54d8-46bb-95fb-5f934f29bebe + status: 200 OK + code: 200 + duration: 203.067189ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1238 + 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"}' + headers: + Content-Length: + - "1238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 624e934c-0b43-45ab-a547-0c8334e4acc7 + status: 200 OK + code: 200 + duration: 30.170451ms + - id: 21 + 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1019 + 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"}' + headers: + Content-Length: + - "1019" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d727323-dd61-4b2d-9e69-a9ae5326009a + status: 200 OK + code: 200 + duration: 735.621313ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1171 + 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"}' + headers: + Content-Length: + - "1171" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33da0391-2483-4d50-adde-43d9a0e6e8ee + status: 200 OK + code: 200 + duration: 249.677369ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 368 + 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}' + headers: + Content-Length: + - "368" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5367a678-898e-4b0a-8534-a93dfa8f91aa + status: 200 OK + code: 200 + duration: 77.102965ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) 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: + 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: + - Fri, 20 Sep 2024 13:01:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc86b771-2d18-4f72-899d-3ce7deb4a99c + status: 200 OK + code: 200 + duration: 225.866254ms + - id: 25 + 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.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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1016 + 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"}' + headers: + Content-Length: + - "1016" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 479eeff9-29fc-431d-851b-240c93926b53 + status: 200 OK + code: 200 + duration: 100.156857ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1171 + 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"}' + headers: + Content-Length: + - "1171" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4d71d9b6-61e3-4323-8219-579ef1dacdd5 + status: 200 OK + code: 200 + duration: 73.580086ms diff --git a/internal/services/tem/testdata/domain-basic.cassette.yaml b/internal/services/tem/testdata/domain-basic.cassette.yaml index 067c0fdbd..7e621a776 100644 --- a/internal/services/tem/testdata/domain-basic.cassette.yaml +++ b/internal/services/tem/testdata/domain-basic.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 1173 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:36:42.736782388Z","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":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:56.510683606Z","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: - "1173" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:42 GMT + - Fri, 20 Sep 2024 13:00:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e277860a-31a3-48e0-a5d2-9113122a256a + - c26e4301-443e-4269-a037-494bd5dc4c07 status: 200 OK code: 200 - duration: 688.362913ms + duration: 340.759286ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: 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/a4586e93-1bb7-4683-b1ed-8ac4ed15e10d + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 1173 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:36:43.033714407Z","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":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:56.747807577Z","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: - "1173" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:43 GMT + - Fri, 20 Sep 2024 13:00:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4ac3330-266a-4582-9824-15ed2c0197da + - cc66779e-18a2-4276-afec-0ec6150d081e status: 200 OK code: 200 - duration: 299.429541ms + duration: 269.075443ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: 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/a4586e93-1bb7-4683-b1ed-8ac4ed15e10d + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 1173 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:36:43.539222741Z","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":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:56.983440444Z","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: - "1173" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:43 GMT + - Fri, 20 Sep 2024 13:00:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 053d3bc9-9d60-4dff-869d-16e0e40aca30 + - c7041a73-4f16-4700-b72a-3e5f322c7293 status: 200 OK code: 200 - duration: 378.650472ms + duration: 78.572325ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: 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/a4586e93-1bb7-4683-b1ed-8ac4ed15e10d + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 1173 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:36:44.142007622Z","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":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:57.313646008Z","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: - "1173" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:44 GMT + - Fri, 20 Sep 2024 13:00:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 717465c9-2b17-417b-ae21-0ab84727dd76 + - 2e6f8411-c8f2-4905-abbc-16a0b6b4ed26 status: 200 OK code: 200 - duration: 320.147507ms + duration: 35.591031ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: 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/a4586e93-1bb7-4683-b1ed-8ac4ed15e10d + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048 method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 1173 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:36:44.884949823Z","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":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:57.903605066Z","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: - "1173" @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:44 GMT + - Fri, 20 Sep 2024 13:00:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dd0b525-b882-4bb7-9a0f-b53ff6432e74 + - 3003930d-4515-4fc7-a9b2-a83ab494de64 status: 200 OK code: 200 - duration: 312.453864ms + duration: 240.76317ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +266,7 @@ interactions: - 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/a4586e93-1bb7-4683-b1ed-8ac4ed15e10d/revoke + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048/revoke method: POST response: proto: HTTP/2.0 @@ -276,7 +276,7 @@ interactions: trailer: {} content_length: 979 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","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-19T14:36:45.864908605Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","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:00:58.827101763Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - "979" @@ -285,9 +285,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:45 GMT + - Fri, 20 Sep 2024 13:00:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bb0c99b-0d11-4911-b301-d48546db93e7 + - 2441a1d9-4da0-475e-8000-86f73c2ab222 status: 200 OK code: 200 - duration: 910.633139ms + duration: 947.869491ms - id: 6 request: proto: HTTP/1.1 @@ -315,7 +315,7 @@ interactions: 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/a4586e93-1bb7-4683-b1ed-8ac4ed15e10d + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048 method: GET response: proto: HTTP/2.0 @@ -325,7 +325,7 @@ interactions: trailer: {} content_length: 1132 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","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-19T14:36:46.091049051Z","status":"excellent"},"revoked_at":"2024-09-19T14:36:45.864908Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","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:00:59.069170562Z","status":"excellent"},"revoked_at":"2024-09-20T13:00:58.827101Z","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: - "1132" @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:46 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5429bd15-81bb-4154-a329-ba3c16201847 + - ad5311c7-f073-40bd-8a0b-2fc0242058ba status: 200 OK code: 200 - duration: 238.511236ms + duration: 275.554564ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +366,7 @@ interactions: - 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/a4586e93-1bb7-4683-b1ed-8ac4ed15e10d/revoke + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048/revoke method: POST response: proto: HTTP/2.0 @@ -376,7 +376,7 @@ interactions: trailer: {} content_length: 976 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","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-19T14:36:45.864908Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","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:00:58.827101Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - "976" @@ -385,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:46 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61f257d9-1403-4b1a-8d40-228d8ee58b26 + - 182dad5b-9ac7-461f-b8f1-a113a643da90 status: 200 OK code: 200 - duration: 106.297305ms + duration: 79.639253ms - id: 8 request: proto: HTTP/1.1 @@ -415,7 +415,7 @@ interactions: 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/a4586e93-1bb7-4683-b1ed-8ac4ed15e10d + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048 method: GET response: proto: HTTP/2.0 @@ -425,7 +425,7 @@ interactions: trailer: {} content_length: 1132 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T14:36:42.666348Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzPEkrAk5UfCIGIwuteiYC0axCMXiQ4Yi7Dvd5Pa8xw7XP9vQQwBQE1sgRF8qHvAAALrRjPsRORACBKql46L4AN3J5YJAtm/p8nPXWSCYmRSLRlYyz2Ll+Na2lr7N3G2uOQ57bZ1juw6G89f9WZk/pFvSYHyHNeLUvXChsH6O22Vx/6ft4MoqflvAy4N37OJ2vxpZqzmUWg2UbFj/SIwwZbdA50snIyEBY2EOX3zq1XdHPgTQ2NSsiEzsx+b2lrJVUuna6UswAiWLk9oOH3Te1dPG/qTkNP9L2mOA1U78BHDzxx7t0gk0GZ8AhZrD6S7DP7XukqDbynvH4fe/QVdS0wIDAQAB","id":"a4586e93-1bb7-4683-b1ed-8ac4ed15e10d","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","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-19T14:36:46.499553223Z","status":"excellent"},"revoked_at":"2024-09-19T14:36:45.864908Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","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:00:59.305151563Z","status":"excellent"},"revoked_at":"2024-09-20T13:00:58.827101Z","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: - "1132" @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:36:46 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,7 +444,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d00916bd-9b62-4213-be9b-4c127ca9dd5d + - 08158ebe-0d17-4e84-962c-4b4951685a90 status: 200 OK code: 200 - duration: 219.058919ms + duration: 438.378323ms diff --git a/internal/services/tem/testdata/domain-validation-no-validation.cassette.yaml b/internal/services/tem/testdata/domain-validation-no-validation.cassette.yaml index 2797c38e0..6174bae14 100644 --- a/internal/services/tem/testdata/domain-validation-no-validation.cassette.yaml +++ b/internal/services/tem/testdata/domain-validation-no-validation.cassette.yaml @@ -1,3 +1,946 @@ --- version: 2 -interactions: [] +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-no-validation.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: 33 + uncompressed: false + body: '{"dns_zones":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 191413d9-2d00-4a76-b10b-01968901c749 + status: 200 OK + code: 200 + duration: 58.936072ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 126 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domain":"scaleway-terraform.com","subdomain":"validation-no-validation","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.23.0; darwin; amd64) 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: 344 + 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":"validation-no-validation","updated_at":"2024-09-20T13:01:03Z"}' + headers: + Content-Length: + - "344" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cd2de4f3-4bb1-4434-ba8e-aeccbc891f35 + status: 200 OK + code: 200 + duration: 499.104823ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-no-validation.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: 377 + 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":"validation-no-validation","updated_at":"2024-09-20T13:01:03Z"}],"total_count":1}' + headers: + Content-Length: + - "377" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c853f83-9c73-43b3-b2a5-f1a270407b40 + status: 200 OK + code: 200 + duration: 70.003527ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 154 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"validation-no-validation.scaleway-terraform.com","accept_tos":true,"autoconfig":false}' + form: {} + headers: + 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 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1209 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.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.validation-no-validation","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.290579769Z","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: + - "1209" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3477a0d-7672-43fe-a9fe-9e664320e225 + status: 200 OK + code: 200 + duration: 472.077169ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1209 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.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.validation-no-validation","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.357623928Z","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: + - "1209" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 116a6fd8-3b04-4a72-8733-497d2212158e + status: 200 OK + code: 200 + duration: 64.828363ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1209 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.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.validation-no-validation","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.557321739Z","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: + - "1209" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a8aaa84-99b4-4d95-93cd-bf23fcaa92cf + status: 200 OK + code: 200 + duration: 211.551755ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1110 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:04.620229042Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","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"}' + headers: + Content-Length: + - "1110" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b8f558ef-10ea-4d66-8fb4-d4c1cb55078c + status: 200 OK + code: 200 + duration: 37.473091ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1110 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080668Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","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"}' + headers: + Content-Length: + - "1110" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98f4ed51-5a72-4eb3-b5a7-7ae98f65a146 + status: 200 OK + code: 200 + duration: 81.077417ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1234 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.822406411Z","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: + - "1234" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba381e9e-e17f-4c14-a1a0-c41325be945d + status: 200 OK + code: 200 + duration: 224.90181ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-no-validation.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: 377 + 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":"validation-no-validation","updated_at":"2024-09-20T13:01:03Z"}],"total_count":1}' + headers: + Content-Length: + - "377" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8407be60-7ece-4ee2-8024-b53e5d3b1d69 + status: 200 OK + code: 200 + duration: 65.118192ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1234 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:06.333151682Z","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: + - "1234" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc88b7c5-94d6-4330-b2a8-d2f44d82ab45 + status: 200 OK + code: 200 + duration: 64.935149ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1234 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:06.404602243Z","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: + - "1234" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1366ae31-3633-4e72-a526-fff2f164c4c7 + status: 200 OK + code: 200 + duration: 23.585331ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1234 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:07.053927610Z","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: + - "1234" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d3515383-bc3f-4a25-8870-8bbc5a086771 + status: 200 OK + code: 200 + duration: 357.770467ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1003 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.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:07.808999151Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "1003" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52fa2907-3862-4e0d-bfec-c911e1fef286 + status: 200 OK + code: 200 + duration: 638.724009ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1156 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.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:08.022566631Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:07.808999Z","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: + - "1156" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8eea13c9-ebe4-4c26-9e92-6da3f792988b + status: 200 OK + code: 200 + duration: 197.115734ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=validation-no-validation.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: 377 + 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":"validation-no-validation","updated_at":"2024-09-20T13:01:03Z"}],"total_count":1}' + headers: + Content-Length: + - "377" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1851125e-3221-47e6-8b66-b2f0a3cabe5d + status: 200 OK + code: 200 + duration: 69.292117ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/validation-no-validation.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: + - Fri, 20 Sep 2024 13:01:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d4576285-85f3-4f10-81c8-cf44aea8d868 + status: 200 OK + code: 200 + duration: 499.634617ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1000 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.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:07.808999Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "1000" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 086402d5-d4cb-44fb-8895-b3b827fd4599 + status: 200 OK + code: 200 + duration: 76.539587ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1156 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.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:08.780746206Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:07.808999Z","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: + - "1156" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9001c2b2-b415-46fb-a67d-2e22c905dfb4 + status: 200 OK + code: 200 + duration: 66.335278ms diff --git a/internal/services/tem/testdata/domain-validation-validation.cassette.yaml b/internal/services/tem/testdata/domain-validation-validation.cassette.yaml index 2797c38e0..866af2edc 100644 --- a/internal/services/tem/testdata/domain-validation-validation.cassette.yaml +++ b/internal/services/tem/testdata/domain-validation-validation.cassette.yaml @@ -1,3 +1,1354 @@ --- version: 2 -interactions: [] +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-validation.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: 33 + uncompressed: false + body: '{"dns_zones":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f13a3eb-209c-4dad-af03-cea76a81a2e0 + status: 200 OK + code: 200 + duration: 62.931881ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 123 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domain":"scaleway-terraform.com","subdomain":"validation-validation","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.23.0; darwin; amd64) 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: 341 + 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":"validation-validation","updated_at":"2024-09-20T13:01:04Z"}' + headers: + Content-Length: + - "341" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d8d2df8-bf35-4ce5-9624-e0a1423d293c + status: 200 OK + code: 200 + duration: 363.77526ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-validation.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 374 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-validation","updated_at":"2024-09-20T13:01:04Z"}],"total_count":1}' + headers: + Content-Length: + - "374" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c44ab31-cf83-421c-8450-227a54f24d22 + status: 200 OK + code: 200 + duration: 77.010724ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 150 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"validation-validation.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.23.0; darwin; amd64) 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: 1227 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.788515Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.873040447Z","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: + - "1227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d366fa09-34be-4f5e-97eb-b176d74bec44 + status: 200 OK + code: 200 + duration: 1.066855136s + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1227 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.788515Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.953886792Z","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: + - "1227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6af7f34-f326-4d21-a8d8-8d10ef2d99b4 + status: 200 OK + code: 200 + duration: 117.291832ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1227 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.788515Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:06.041695667Z","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: + - "1227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 50407fa7-b487-4dab-9dd7-64a92d446906 + status: 200 OK + code: 200 + duration: 24.965872ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1104 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:06.070757045Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 60558e40-1272-464f-87e1-85d1895c3e96 + status: 200 OK + code: 200 + duration: 39.557169ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1104 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:06.614115484Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 27ea197b-f902-494d-b1ea-5a311da1caeb + status: 200 OK + code: 200 + duration: 43.186646ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1104 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:07.683883459Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b54051f6-0081-4387-9477-88486793a560 + status: 200 OK + code: 200 + duration: 69.195053ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1104 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:09.733955923Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14c37bf0-3eaf-4bf0-83bd-b3a5cb522308 + status: 200 OK + code: 200 + duration: 56.074999ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1104 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:13.829996271Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb5e7d31-5fde-4b92-9de2-d3175a132b73 + status: 200 OK + code: 200 + duration: 87.768443ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1104 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:21.922170757Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a99c9654-b4ed-4b16-9eae-15dd0a76be59 + status: 200 OK + code: 200 + duration: 90.850185ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1101 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:21.922170Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1101" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ade9fe1-1062-44bb-a911-4e97c24e08c4 + status: 200 OK + code: 200 + duration: 333.505663ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1104 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:42.332557609Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f57d74b-31fd-4d4b-b76e-608502c83881 + status: 200 OK + code: 200 + duration: 68.179965ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1104 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:52.407350652Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b70e9ab2-30e9-466b-b1b5-556c1ee48fcf + status: 200 OK + code: 200 + duration: 77.282327ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","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: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89e2c166-0ee6-418c-b1fd-d039920c4643 + status: 200 OK + code: 200 + duration: 97.647703ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1250 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:02.546022735Z","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: + - "1250" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ec6b280-e7e6-4972-a22c-11aa581a66d6 + status: 200 OK + code: 200 + duration: 22.859721ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-validation.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: 374 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-validation","updated_at":"2024-09-20T13:01:49Z"}],"total_count":1}' + headers: + Content-Length: + - "374" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 03505900-d5c1-47c7-81d6-3516c7f29d41 + status: 200 OK + code: 200 + duration: 86.692038ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1250 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:03.271861918Z","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: + - "1250" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2373a94f-92fe-4e09-a49c-e5d604c25892 + status: 200 OK + code: 200 + duration: 328.066356ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1250 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:03.668592928Z","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: + - "1250" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f7d548a-a7c5-41f8-adae-a21f66ba8fd3 + status: 200 OK + code: 200 + duration: 309.978435ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1250 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:04.300963649Z","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: + - "1250" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f579357-3212-409c-b4ee-ae6ae03454ff + status: 200 OK + code: 200 + duration: 62.974536ms + - id: 21 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1025 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.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:02:05.011669076Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "1025" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab1fff71-a379-468c-ad28-dac950ab36aa + status: 200 OK + code: 200 + duration: 694.429692ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1177 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.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:02:05.051376719Z","status":"excellent"},"revoked_at":"2024-09-20T13:02:05.011669Z","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: + - "1177" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59599e3e-8e3c-4697-b3f2-29cd39258913 + status: 200 OK + code: 200 + duration: 57.739283ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=validation-validation.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 374 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-validation","updated_at":"2024-09-20T13:01:49Z"}],"total_count":1}' + headers: + Content-Length: + - "374" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b4e7fff7-7d3a-4808-862b-6a9bb9c25a56 + status: 200 OK + code: 200 + duration: 87.709169ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/validation-validation.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: + - Fri, 20 Sep 2024 13:02:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eeea0369-6d62-4eb4-8f3a-1c4efe860881 + status: 200 OK + code: 200 + duration: 357.223241ms + - id: 25 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1022 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.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:02:05.011669Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "1022" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ebb39b0-f539-4480-a155-884513117d7b + status: 200 OK + code: 200 + duration: 107.032031ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1177 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.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:02:05.733653626Z","status":"excellent"},"revoked_at":"2024-09-20T13:02:05.011669Z","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: + - "1177" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:02:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6966ced-469f-4447-a88c-d90df7f8b0c7 + status: 200 OK + code: 200 + duration: 60.782207ms diff --git a/internal/services/tem/testdata/webhook-basic-and-update.cassette.yaml b/internal/services/tem/testdata/webhook-basic-and-update.cassette.yaml new file mode 100644 index 000000000..5cb3333b4 --- /dev/null +++ b/internal/services/tem/testdata/webhook-basic-and-update.cassette.yaml @@ -0,0 +1,4715 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:27 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: + - 4698a440-8405-4c7d-a7e7-4c0f93dc97e2 + status: 200 OK + code: 200 + duration: 853.491711ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:27 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: + - 00247af1-f0da-4ee7-95de-621c37e741cf + status: 200 OK + code: 200 + duration: 120.840485ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:27 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: + - f7d8d228-1b49-4f6b-96b8-a3e8fb03ba61 + status: 200 OK + code: 200 + duration: 63.825981ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40806753-676b-42bd-b888-6b23dde75fe0 + status: 200 OK + code: 200 + duration: 64.834701ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:29 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: + - a3a52ea1-7091-4e64-a799-ee0b31dbf89f + status: 200 OK + code: 200 + duration: 1.148492169s + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:29 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: + - 1614fa05-d084-411d-9e15-79c52fe9f0cd + status: 200 OK + code: 200 + duration: 87.964412ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:29 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: + - 5e130cab-d89d-4dde-b4bd-a5c4f30227e3 + status: 200 OK + code: 200 + duration: 53.760025ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:29 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: + - 8ac4a00d-f3a5-42f9-ac3b-91cb35b7376e + status: 200 OK + code: 200 + duration: 47.806571ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.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: 33 + uncompressed: false + body: '{"dns_zones":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:29 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: + - 01af46f4-da61-4489-8cfb-b47ddc40deaa + status: 200 OK + code: 200 + duration: 66.511521ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 172 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}' + form: {} + headers: + 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/mnq/v1beta1/regions/fr-par/sns-credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 486 + uncompressed: false + body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356161Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + headers: + Content-Length: + - "486" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:29 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: + - 6a66640f-ba08-4f54-984c-5aac15bb7aaf + status: 200 OK + code: 200 + duration: 81.814882ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 419 + uncompressed: false + body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + headers: + Content-Length: + - "419" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:29 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: + - 201c7d4a-18e6-46e6-b796-59ed01be656c + status: 200 OK + code: 200 + duration: 71.479574ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:30 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: + - 4a8dc2bd-6bbb-4763-a2c8-2028d4a7ed81 + status: 200 OK + code: 200 + duration: 73.677351ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 79 + transfer_encoding: [] + trailer: {} + host: sns.mnq.fr-par.scaleway.com + remote_addr: "" + request_uri: "" + body: Action=CreateTopic&Attributes=&Name=test-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - CreateTopic + Attributes: + - "" + Name: + - test-mnq-sns-topic-basic + Version: + - "2010-03-31" + headers: + Content-Length: + - "79" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + User-Agent: + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T132130Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 378 + uncompressed: false + body: | + + + arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + + + tx36e0f2a9-0f8f-46f7-af4f-0a2d45d518b3 + + + headers: + Content-Length: + - "378" + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Fri, 20 Sep 2024 13:21:30 GMT + status: 200 OK + code: 200 + duration: 298.643648ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + transfer_encoding: [] + trailer: {} + host: sns.mnq.fr-par.scaleway.com + remote_addr: "" + request_uri: "" + body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - GetTopicAttributes + TopicArn: + - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + Version: + - "2010-03-31" + headers: + Content-Length: + - "152" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + User-Agent: + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T132130Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: | + + + + + Owner + project-105bdce1-64c0-48ab-899d-868455867ecf + + + SubscriptionsConfirmed + 0 + + + SubscriptionsDeleted + 0 + + + SubscriptionsPending + 0 + + + TopicArn + arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + + + + + tx6f978e63-cdbf-42dd-9149-abc0a4e2093c + + + headers: + Content-Length: + - "1046" + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Fri, 20 Sep 2024 13:21:30 GMT + status: 200 OK + code: 200 + duration: 27.875817ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domain":"scaleway-terraform.com","subdomain":"webhook-test","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.23.0; darwin; amd64) 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: 332 + 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":"webhook-test","updated_at":"2024-09-20T13:21:29Z"}' + headers: + Content-Length: + - "332" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:30 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: + - effece2d-3775-49f6-83e7-42886cad7a46 + status: 200 OK + code: 200 + duration: 561.301349ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.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: 365 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:29Z"}],"total_count":1}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:30 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: + - 75f13e0f-c82b-4b46-87f1-3102c751170a + status: 200 OK + code: 200 + duration: 74.833502ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 141 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"webhook-test.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.23.0; darwin; amd64) 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: 1209 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.083570Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:21:31.162189727Z","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: + - "1209" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b461dc0-f6f5-40f8-9565-285f4abc98fa + status: 200 OK + code: 200 + duration: 637.567023ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1209 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.083570Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:21:31.218254347Z","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: + - "1209" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6ec409c-a8d6-4eaa-b41a-bcb52ae42cd6 + status: 200 OK + code: 200 + duration: 61.561061ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1209 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.083570Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:21:31.304247887Z","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: + - "1209" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72b4b768-da50-4be6-9190-a654a42b964d + status: 200 OK + code: 200 + duration: 28.428883ms + - id: 19 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.367308980Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b371441d-ca0a-4bc6-baed-8fea817de537 + status: 200 OK + code: 200 + duration: 73.519866ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 287 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered","email_dropped"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}' + form: {} + headers: + 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/webhooks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 483 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "483" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2af3f5ee-d388-4794-87af-488c01c83f13 + status: 200 OK + code: 200 + duration: 177.723876ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 483 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "483" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f338a7f-1cba-4495-a8e6-4a3d8b99f85a + status: 200 OK + code: 200 + duration: 68.333729ms + - id: 22 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.909379805Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7239da7-a3a0-4a24-998d-78d43d8226f5 + status: 200 OK + code: 200 + duration: 42.89604ms + - id: 23 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1083 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.909379Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1083" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c0465d1d-05de-4a07-9bdb-d39368072607 + status: 200 OK + code: 200 + duration: 74.231547ms + - id: 24 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1083 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.909379Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1083" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21: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: + - 0b27c5b8-95c3-409b-9886-46159b8a493e + status: 200 OK + code: 200 + duration: 72.641376ms + - id: 25 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:39.145791338Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:39 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: + - 7727e751-2447-4fc3-8292-171485e33f6c + status: 200 OK + code: 200 + duration: 97.970324ms + - id: 26 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:47.283860824Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a77b280-d41c-45de-a48d-fbd6040ed92e + status: 200 OK + code: 200 + duration: 118.86094ms + - id: 27 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:57.356294759Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:21:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2410564-72a9-45b6-ad7e-2e1ec2779e3c + status: 200 OK + code: 200 + duration: 76.66122ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1106 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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: + - "1106" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e34aade-58b4-4de9-8d3a-925854806c76 + status: 200 OK + code: 200 + duration: 97.730268ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1232 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:07.664137133Z","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: + - "1232" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 561f6849-18d0-42bc-94db-1ba85f1bedc7 + status: 200 OK + code: 200 + duration: 199.698082ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 483 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "483" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 144dab31-1642-4220-b655-232724812023 + status: 200 OK + code: 200 + duration: 71.961169ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d0ab956-83cd-491e-8724-75432ad73470 + status: 200 OK + code: 200 + duration: 690.891054ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10dfe6c4-af42-41d6-b511-a7915e5a5e40 + status: 200 OK + code: 200 + duration: 101.740208ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ad6391a-c609-472b-8b78-a02302ee792b + status: 200 OK + code: 200 + duration: 60.704687ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79877c86-a246-4d5f-a02a-7cd65ecd51de + status: 200 OK + code: 200 + duration: 83.83306ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.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: 365 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:57Z"}],"total_count":1}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:09 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: + - d79b5883-4577-454a-825d-bc1b3bb0a961 + status: 200 OK + code: 200 + duration: 99.560499ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1232 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:09.433643276Z","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: + - "1232" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:09 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: + - a6bdbee8-879b-4c22-b4f1-b969f0632bff + status: 200 OK + code: 200 + duration: 255.235133ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1232 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:09.707209596Z","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: + - "1232" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:09 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: + - 79c77fbe-6e8f-466c-b0da-0bc127137329 + status: 200 OK + code: 200 + duration: 301.475314ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:09 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: + - e2304052-568a-4ca8-813a-0c2869a6795b + status: 200 OK + code: 200 + duration: 770.845228ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b1793621-2b63-4a46-9370-b7332bdfc1ff + status: 200 OK + code: 200 + duration: 111.77344ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f630719-5c73-46be-b444-2b9cd0921a95 + status: 200 OK + code: 200 + duration: 67.423899ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40af64ee-60f7-4ac5-a58a-1f2e3826af48 + status: 200 OK + code: 200 + duration: 52.3701ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 419 + uncompressed: false + body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + headers: + Content-Length: + - "419" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43609da4-3ee3-4127-8cc5-57d6d0773f2a + status: 200 OK + code: 200 + duration: 58.654467ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + transfer_encoding: [] + trailer: {} + host: sns.mnq.fr-par.scaleway.com + remote_addr: "" + request_uri: "" + body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - GetTopicAttributes + TopicArn: + - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + Version: + - "2010-03-31" + headers: + Content-Length: + - "152" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + User-Agent: + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T132210Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: | + + + + + Owner + project-105bdce1-64c0-48ab-899d-868455867ecf + + + SubscriptionsConfirmed + 0 + + + SubscriptionsDeleted + 0 + + + SubscriptionsPending + 0 + + + TopicArn + arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + + + + + txaab535d1-7321-4514-b2f9-e97fdb7c7423 + + + headers: + Content-Length: + - "1046" + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Fri, 20 Sep 2024 13:22:10 GMT + status: 200 OK + code: 200 + duration: 40.451289ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 483 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "483" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 172cfc62-b08f-48b2-8138-f5b70d3b47c7 + status: 200 OK + code: 200 + duration: 62.248245ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 57bb45b2-4308-4b5d-bcbd-626a24521c28 + status: 200 OK + code: 200 + duration: 798.990895ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db092199-381f-4f5b-85b8-55614b3ae85e + status: 200 OK + code: 200 + duration: 81.117813ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94e4b2e5-dbd2-4b3b-8ab9-8bddddab9b56 + status: 200 OK + code: 200 + duration: 69.507864ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 249f5789-ca3c-4630-83a7-ea10745c3315 + status: 200 OK + code: 200 + duration: 52.649601ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.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: 365 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:57Z"}],"total_count":1}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b8ffc19-a912-4112-98e9-fba6e186521d + status: 200 OK + code: 200 + duration: 81.063018ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1232 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:11.765735671Z","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: + - "1232" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 346abe30-b028-40f3-bc81-45952d30487e + status: 200 OK + code: 200 + duration: 73.013262ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1232 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:12.039618467Z","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: + - "1232" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7435edf7-8da4-458c-a5b2-9a01ea37616a + status: 200 OK + code: 200 + duration: 268.241163ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c4e4c51-4db2-4c06-a413-5631357157c2 + status: 200 OK + code: 200 + duration: 653.845684ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a40108e-815f-4926-a6da-0a07b44a5dd7 + status: 200 OK + code: 200 + duration: 102.83227ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc8729c6-d869-4bf7-820d-91919a244314 + status: 200 OK + code: 200 + duration: 73.180741ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1748b687-7ac8-4e5f-b4f4-30f751d6edf5 + status: 200 OK + code: 200 + duration: 63.521993ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 419 + uncompressed: false + body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + headers: + Content-Length: + - "419" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 740fa949-6751-4697-bdae-caac24f3f326 + status: 200 OK + code: 200 + duration: 57.050589ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + transfer_encoding: [] + trailer: {} + host: sns.mnq.fr-par.scaleway.com + remote_addr: "" + request_uri: "" + body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - GetTopicAttributes + TopicArn: + - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + Version: + - "2010-03-31" + headers: + Content-Length: + - "152" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + User-Agent: + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T132212Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: | + + + + + Owner + project-105bdce1-64c0-48ab-899d-868455867ecf + + + SubscriptionsConfirmed + 0 + + + SubscriptionsDeleted + 0 + + + SubscriptionsPending + 0 + + + TopicArn + arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + + + + + tx8b324376-a81f-489a-9cfe-cbe379f654ec + + + headers: + Content-Length: + - "1046" + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Fri, 20 Sep 2024 13:22:12 GMT + status: 200 OK + code: 200 + duration: 22.753057ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 483 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "483" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2f256b6-e09f-4f5d-b0a5-ac620b79c3f9 + status: 200 OK + code: 200 + duration: 56.425632ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38522220-a9d9-4be0-9b84-83ce580b0841 + status: 200 OK + code: 200 + duration: 755.95591ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5250760-55c7-455e-ad2c-ab6649ad6f37 + status: 200 OK + code: 200 + duration: 94.657821ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f35a17cc-29bd-4ecd-a920-fbd991a0a21f + status: 200 OK + code: 200 + duration: 51.898073ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ea9554a-f166-4f5b-8072-da89ea4d7e5d + status: 200 OK + code: 200 + duration: 63.309682ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 67 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"terraform-webhook-updated","event_types":["email_queued"]}' + form: {} + headers: + 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/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 466 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_queued"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:14 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: + - facee04c-eae7-4ec3-8a3c-89397a128e33 + status: 200 OK + code: 200 + duration: 141.78272ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 466 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_queued"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:14 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: + - 2821605b-9314-47dc-b7ed-796d780d86ba + status: 200 OK + code: 200 + duration: 77.575134ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 466 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_queued"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:14 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: + - 120a50e1-3822-4417-959c-bfe8738703fa + status: 200 OK + code: 200 + duration: 32.243452ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 67b1e3a4-af66-4eba-8228-cf97482f2075 + status: 200 OK + code: 200 + duration: 638.880826ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c1799f50-71c5-4dd1-bea9-da432369b326 + status: 200 OK + code: 200 + duration: 89.732332ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cca53aa2-163d-4941-b182-d220e192ca6b + status: 200 OK + code: 200 + duration: 58.238951ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51a802d1-0f34-4afa-bb02-71776fd8eae3 + status: 200 OK + code: 200 + duration: 54.924087ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.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: 365 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:57Z"}],"total_count":1}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 67f007a7-2feb-49ce-9547-8fd3023b3f59 + status: 200 OK + code: 200 + duration: 75.118942ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1232 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:15.916803879Z","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: + - "1232" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e014bb0-3931-4e5f-98b0-9ee22c2b875e + status: 200 OK + code: 200 + duration: 309.263624ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1232 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:16.078016560Z","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: + - "1232" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f91cdf9-0edb-4d92-be16-ec9dc7ceec47 + status: 200 OK + code: 200 + duration: 78.064079ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34f487f2-ef7a-44a6-ad17-552bf9e77061 + status: 200 OK + code: 200 + duration: 699.104322ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c44129e2-d320-473e-a4cc-8c4e34fad74e + status: 200 OK + code: 200 + duration: 126.144422ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18d38760-3434-4f2e-80c0-8e40f952e185 + status: 200 OK + code: 200 + duration: 60.168099ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ae62d344-f25b-4c12-a57e-f4e3fcaf3a5a + status: 200 OK + code: 200 + duration: 53.705792ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 419 + uncompressed: false + body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + headers: + Content-Length: + - "419" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c2eb778-b842-4267-9284-6889a01d40bb + status: 200 OK + code: 200 + duration: 81.304468ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + transfer_encoding: [] + trailer: {} + host: sns.mnq.fr-par.scaleway.com + remote_addr: "" + request_uri: "" + body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - GetTopicAttributes + TopicArn: + - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + Version: + - "2010-03-31" + headers: + Content-Length: + - "152" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + User-Agent: + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T132216Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: | + + + + + Owner + project-105bdce1-64c0-48ab-899d-868455867ecf + + + SubscriptionsConfirmed + 0 + + + SubscriptionsDeleted + 0 + + + SubscriptionsPending + 0 + + + TopicArn + arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + + + + + tx9a6b4b20-d5f2-4a09-af5a-56397adef6e3 + + + headers: + Content-Length: + - "1046" + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Fri, 20 Sep 2024 13:22:16 GMT + status: 200 OK + code: 200 + duration: 45.314604ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 466 + uncompressed: false + body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_queued"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df1c0db4-3892-43ad-bc41-30fe602b17c0 + status: 200 OK + code: 200 + duration: 56.436287ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a23dc0a-d340-41de-a7f7-33f5d9d71574 + status: 200 OK + code: 200 + duration: 655.189901ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - efa4a9b4-af8e-4e3c-9d80-3d332c99276c + status: 200 OK + code: 200 + duration: 99.738887ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 62a03c73-db0a-409d-8f9f-8179210093bb + status: 200 OK + code: 200 + duration: 53.762847ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5792f56c-5865-4f6e-bee3-d7dc1d2e1079 + status: 200 OK + code: 200 + duration: 53.490022ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + 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: + - Fri, 20 Sep 2024 13:22:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6fb13010-3929-485b-8737-ecdd49257486 + status: 204 No Content + code: 204 + duration: 135.184884ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 145 + transfer_encoding: [] + trailer: {} + host: sns.mnq.fr-par.scaleway.com + remote_addr: "" + request_uri: "" + body: Action=DeleteTopic&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - DeleteTopic + TopicArn: + - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + Version: + - "2010-03-31" + headers: + Content-Length: + - "145" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + User-Agent: + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T132218Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 211 + uncompressed: false + body: | + + + txf6e94131-eda3-44dc-889f-da3eb34f9380 + + + headers: + Content-Length: + - "211" + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Fri, 20 Sep 2024 13:22:18 GMT + status: 200 OK + code: 200 + duration: 63.90306ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1229 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:16.628346Z","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: + - "1229" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7a70db1-4bd3-41a4-af4d-da58cfe50705 + status: 200 OK + code: 200 + duration: 77.867962ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894 + 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: + - Fri, 20 Sep 2024 13:22:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65ad33d9-aa8e-4c09-95de-db4829f5ff1d + status: 204 No Content + code: 204 + duration: 76.488703ms + - id: 88 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/revoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1016 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.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:22:19.359926046Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "1016" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22: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: + - f8ffb16e-1349-482d-b390-528a265b7e27 + status: 200 OK + code: 200 + duration: 1.085535521s + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1165 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.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:22:16.628346Z","status":"excellent"},"revoked_at":"2024-09-20T13:22:19.359926Z","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: + - "1165" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22: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: + - b66fc29d-6924-40d8-9b46-85ada5617a3b + status: 200 OK + code: 200 + duration: 211.883143ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=webhook-test.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: 365 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:57Z"}],"total_count":1}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22: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: + - 322a6caa-8667-4aba-8e00-a1bf6eabea1a + status: 200 OK + code: 200 + duration: 93.071417ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/webhook-test.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: + - Fri, 20 Sep 2024 13:22:20 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: + - 32d46cb3-0e35-4832-82c0-6ba7e767c9b1 + status: 200 OK + code: 200 + duration: 270.080842ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 131 + uncompressed: false + body: '{"message":"resource is not found","resource":"webhook_id","resource_id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","type":"not_found"}' + headers: + Content-Length: + - "131" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:22:20 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: + - 518c7c45-56f3-4389-abaf-29db4ec9d33a + status: 404 Not Found + code: 404 + duration: 25.718624ms diff --git a/internal/services/tem/testdata/webhook-basic.cassette.yaml b/internal/services/tem/testdata/webhook-basic.cassette.yaml index 94424a334..4311ac74b 100644 --- a/internal/services/tem/testdata/webhook-basic.cassette.yaml +++ b/internal/services/tem/testdata/webhook-basic.cassette.yaml @@ -17,7 +17,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -25,18 +25,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 259 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' headers: Content-Length: - - "1261" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:36 GMT + - Fri, 20 Sep 2024 13:00:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4451aff2-ae15-4cb7-af0c-b13dd65f001d + - f05082e7-75e8-4601-8d43-498c35741eb1 status: 200 OK code: 200 - duration: 255.614418ms + duration: 776.882682ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +66,7 @@ interactions: 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -74,18 +74,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 227 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' headers: Content-Length: - - "1230" + - "227" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:36 GMT + - Fri, 20 Sep 2024 13:00:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -95,10 +95,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 959736a9-551b-4ca9-bf1c-b1260f5606da + - a99eb2e8-1254-45bc-969c-8a27b0d9dd92 status: 200 OK code: 200 - duration: 263.920182ms + duration: 85.223661ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +115,7 @@ interactions: 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -123,18 +123,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 238 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "259" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:37 GMT + - Fri, 20 Sep 2024 13:00:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -144,10 +144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2cfd5ca-22c1-4264-95a5-4296edcdf342 + - 3bc83fc6-0391-484c-aa8a-f17cec054a06 status: 200 OK code: 200 - duration: 929.506062ms + duration: 61.863657ms - id: 3 request: proto: HTTP/1.1 @@ -164,7 +164,7 @@ interactions: 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -172,18 +172,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 238 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "227" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:37 GMT + - Fri, 20 Sep 2024 13:00:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -193,10 +193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9284c2d-7a90-490b-a2af-20e68c270192 + - 8d859a4e-7a29-49b8-849d-51eec6751f9c status: 200 OK code: 200 - duration: 125.548338ms + duration: 59.299274ms - id: 4 request: proto: HTTP/1.1 @@ -213,7 +213,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -221,18 +221,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 259 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' headers: Content-Length: - - "238" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:37 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -242,10 +242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 544ec06b-3ffb-48be-af85-b4d2d6aff64c + - 3e243f8a-8d60-416b-8090-0de7aca20ce4 status: 200 OK code: 200 - duration: 70.287904ms + duration: 1.118707051s - id: 5 request: proto: HTTP/1.1 @@ -262,7 +262,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -270,18 +270,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 227 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' headers: Content-Length: - - "238" + - "227" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:37 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -291,10 +291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dbfce93-e45a-476a-bcf9-b0b7de59a461 + - 7572f9bf-1ba8-4b4c-92a1-dd0d0d000d62 status: 200 OK code: 200 - duration: 75.74593ms + duration: 99.422507ms - id: 6 request: proto: HTTP/1.1 @@ -311,7 +311,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -319,18 +319,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 238 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "1261" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:37 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -340,10 +340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 848a5eb0-31cf-4906-b00e-15c852a3c341 + - 89751900-12a5-4700-b9eb-285dc2ea93f2 status: 200 OK code: 200 - duration: 323.022742ms + duration: 76.6793ms - id: 7 request: proto: HTTP/1.1 @@ -360,7 +360,7 @@ interactions: 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -368,18 +368,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 238 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "1230" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:38 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -389,10 +389,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb3653f3-1188-4328-ae56-a913ac3f3628 + - 675a03e0-7d0f-4906-bb75-efafa527759c status: 200 OK code: 200 - duration: 199.186413ms + duration: 58.230041ms - id: 8 request: proto: HTTP/1.1 @@ -409,7 +409,7 @@ interactions: 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: proto: HTTP/2.0 @@ -417,18 +417,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 33 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"dns_zones":[],"total_count":0}' headers: Content-Length: - - "259" + - "33" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:38 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -438,46 +438,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c313109-0f91-4e8e-ac85-d3b4d39aa0bc + - eb2c4119-5220-4773-9ee8-243e813fa42e status: 200 OK code: 200 - duration: 827.23064ms + duration: 69.933383ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 166 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-sns-credentials-zen-mclean","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}' form: {} headers: + 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 480 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"access_key":"Woi412g4sUn9aJWD0Q1z","created_at":"2024-09-20T13:01:00.315579963Z","id":"19d4a109-c812-4f9a-9d49-55ce89f05d5d","name":"tf-sns-credentials-zen-mclean","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"47214efc2e91d8d45617246b460b6d1a7f904032","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' headers: Content-Length: - - "227" + - "480" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:38 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -487,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c1ee95b-a3de-4869-9bf4-cc43f35e3721 + - 7a858182-14d8-4da8-b5ab-6800fb7ff4de status: 200 OK code: 200 - duration: 94.909633ms + duration: 96.960379ms - id: 10 request: proto: HTTP/1.1 @@ -507,7 +509,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/19d4a109-c812-4f9a-9d49-55ce89f05d5d method: GET response: proto: HTTP/2.0 @@ -515,18 +517,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 413 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"access_key":"Woi412g4sUn9aJWD0Q1z","created_at":"2024-09-20T13:01:00.315579Z","id":"19d4a109-c812-4f9a-9d49-55ce89f05d5d","name":"tf-sns-credentials-zen-mclean","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"47214efc2e91d8d45617246b460b6d1a7f904032","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' headers: Content-Length: - - "238" + - "413" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:38 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -536,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca496efe-4aa0-4539-ad7e-83d14e8aa90e + - 227c241b-aca7-4905-9aaa-1d7f8542d804 status: 200 OK code: 200 - duration: 62.707135ms + duration: 151.7893ms - id: 11 request: proto: HTTP/1.1 @@ -575,7 +577,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:38 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -585,29 +587,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9606b805-f4e6-4968-a062-8dcf2daa952c + - c7036e91-e2bf-48ed-8831-8e09b06dc4c0 status: 200 OK code: 200 - duration: 59.235468ms + duration: 58.299557ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 171 + content_length: 114 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-sns-credentials-pensive-khorana","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}' + body: '{"domain":"scaleway-terraform.com","subdomain":"webhook-test","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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials + url: https://api.scaleway.com/domain/v2beta1/dns-zones method: POST response: proto: HTTP/2.0 @@ -615,18 +617,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 485 + content_length: 332 uncompressed: false - body: '{"access_key":"MpUM6jzH6YI71xxp5lDd","created_at":"2024-09-19T14:17:38.986835807Z","id":"f3063561-2f3d-4785-8fb8-555ba2c38099","name":"tf-sns-credentials-pensive-khorana","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"9514c4a86cd4313b9912308d81c3a9ded970aa63","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + 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":"webhook-test","updated_at":"2024-09-20T13:01:00Z"}' headers: Content-Length: - - "485" + - "332" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:38 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -636,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b851ae3e-b3e5-49e7-a545-72ab276f5b02 + - 555a044a-f496-465a-bd28-64a660f4f662 status: 200 OK code: 200 - duration: 87.616605ms + duration: 428.758753ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +658,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-credentials/f3063561-2f3d-4785-8fb8-555ba2c38099 + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: proto: HTTP/2.0 @@ -664,18 +666,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 418 + content_length: 365 uncompressed: false - body: '{"access_key":"MpUM6jzH6YI71xxp5lDd","created_at":"2024-09-19T14:17:38.986835Z","id":"f3063561-2f3d-4785-8fb8-555ba2c38099","name":"tf-sns-credentials-pensive-khorana","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"9514c4a86cd4313b9912308d81c3a9ded970aa63","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","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":"webhook-test","updated_at":"2024-09-20T13:01:00Z"}],"total_count":1}' headers: Content-Length: - - "418" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:39 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -685,46 +687,107 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd2bca11-656b-457b-8040-2b0d6fefc86f + - 15337cca-3c2e-4e53-aab9-02264d1b8a5c status: 200 OK code: 200 - duration: 61.495548ms + duration: 67.31495ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 79 + transfer_encoding: [] + trailer: {} + host: sns.mnq.fr-par.scaleway.com + remote_addr: "" + request_uri: "" + body: Action=CreateTopic&Attributes=&Name=test-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - CreateTopic + Attributes: + - "" + Name: + - test-mnq-sns-topic-basic + Version: + - "2010-03-31" + headers: + Content-Length: + - "79" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + User-Agent: + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T130100Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 378 + uncompressed: false + body: | + + + arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + + + txcec9675d-eccd-45c4-a855-94bede0a4c26 + + + headers: + Content-Length: + - "378" + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Fri, 20 Sep 2024 13:01:01 GMT + status: 200 OK + code: 200 + duration: 759.876174ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 141 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"webhook-test.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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + 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: 238 + content_length: 1209 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.304822Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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.332349954Z","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: - - "238" + - "1209" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:39 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -734,70 +797,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a7922bc-a8bd-4e52-8453-0ace10fda6e5 + - b3c6be25-caf3-43e3-aa11-1bb84e3babcb status: 200 OK code: 200 - duration: 63.736434ms - - id: 15 + duration: 516.212447ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 79 + content_length: 0 transfer_encoding: [] trailer: {} - host: sns.mnq.fr-par.scaleway.com + host: api.scaleway.com remote_addr: "" request_uri: "" - body: Action=CreateTopic&Attributes=&Name=test-mnq-sns-topic-basic&Version=2010-03-31 - form: - Action: - - CreateTopic - Attributes: - - "" - Name: - - test-mnq-sns-topic-basic - Version: - - "2010-03-31" + body: "" + form: {} headers: - Content-Length: - - "79" - Content-Type: - - application/x-www-form-urlencoded; charset=utf-8 User-Agent: - - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) - X-Amz-Date: - - 20240919T141739Z - url: https://sns.mnq.fr-par.scaleway.com/ - method: POST + - 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/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a + method: GET response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 378 + content_length: 1209 uncompressed: false - body: | - - - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - - - txdd364d42-53c3-4b20-af9a-84d78ab0d00d - - + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.304822Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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.350553918Z","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: - - "378" + - "1209" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - - text/xml; charset=UTF-8 + - application/json Date: - - Thu, 19 Sep 2024 14:17:39 GMT + - Fri, 20 Sep 2024 13:01:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 979669f9-d0b6-45c6-b3a3-4e95de828a56 status: 200 OK code: 200 - duration: 492.081697ms - - id: 16 + duration: 18.085389ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -824,7 +877,7 @@ interactions: User-Agent: - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) X-Amz-Date: - - 20240919T141739Z + - 20240920T130101Z url: https://sns.mnq.fr-par.scaleway.com/ method: POST response: @@ -862,7 +915,7 @@ interactions: - txf7d1aab9-cf3f-461e-a9c2-f11a7e125ad5 + tx98a8d803-7417-493b-bcf0-b75631b63ad5 headers: @@ -871,48 +924,46 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Thu, 19 Sep 2024 14:17:39 GMT + - Fri, 20 Sep 2024 13:01:01 GMT status: 200 OK code: 200 - duration: 24.99917ms - - id: 17 + duration: 36.859488ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 287 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered","email_dropped"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}' + body: "" form: {} headers: - 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/webhooks - method: POST + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 483 + content_length: 1209 uncompressed: false - body: '{"created_at":"2024-09-19T14:17:39.768649Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered","email_dropped"],"id":"c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:17:39.768649Z"}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.304822Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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.417227443Z","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: - - "483" + - "1209" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:40 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -922,46 +973,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3766f84c-370e-4e70-bb77-1fe0d1f3f6b5 + - ca6cfbc0-0cb6-4e08-947b-78b412fa0ef1 status: 200 OK code: 200 - duration: 543.254883ms - - id: 18 + duration: 26.788905ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/webhooks/c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 483 + content_length: 1086 uncompressed: false - body: '{"created_at":"2024-09-19T14:17:39.768649Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered","email_dropped"],"id":"c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:17:39.768649Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.452471079Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' headers: Content-Length: - - "483" + - "1086" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:40 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -971,28 +1024,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95a9b278-cc7e-4f6b-995b-cbdac9937fee + - 280eef8d-f291-4050-8162-71ac518c5042 status: 200 OK code: 200 - duration: 69.407894ms - - id: 19 + duration: 48.424321ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 287 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered","email_dropped"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}' form: {} headers: + 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/webhooks/c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -1001,7 +1056,7 @@ interactions: trailer: {} content_length: 483 uncompressed: false - body: '{"created_at":"2024-09-19T14:17:39.768649Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered","email_dropped"],"id":"c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:17:39.768649Z"}' + body: '{"created_at":"2024-09-20T13:01:01.460826Z","domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","event_types":["email_delivered","email_dropped"],"id":"57bc0f16-88fb-466a-85ac-67cb46768a63","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:01.460826Z"}' headers: Content-Length: - "483" @@ -1010,7 +1065,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:40 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1020,11 +1075,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26672eff-ee53-4c89-99ba-624df026ab99 + - d156cb71-0c76-4913-b7d9-1940031a99f3 status: 200 OK code: 200 - duration: 96.042562ms - - id: 20 + duration: 105.73104ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1040,7 +1095,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63 method: GET response: proto: HTTP/2.0 @@ -1048,18 +1103,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 483 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"created_at":"2024-09-20T13:01:01.460826Z","domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","event_types":["email_delivered","email_dropped"],"id":"57bc0f16-88fb-466a-85ac-67cb46768a63","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:01.460826Z"}' headers: Content-Length: - - "1261" + - "483" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:40 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1069,46 +1124,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e77511a-904e-47d9-972b-e0496603c224 + - d6ef8c40-cb4c-4df1-a87b-cfb205b395f1 status: 200 OK code: 200 - duration: 260.564081ms - - id: 21 + duration: 52.685243ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 1086 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.994119055Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' headers: Content-Length: - - "1230" + - "1086" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:41 GMT + - Fri, 20 Sep 2024 13:01:02 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1118,46 +1175,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f2a6510-07fc-45c4-acb3-c67b252cac6f + - d5c24afc-efdb-4968-be3a-e188db681e9b status: 200 OK code: 200 - duration: 266.816067ms - - id: 22 + duration: 48.089054ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 1086 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:03.097694890Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' headers: Content-Length: - - "259" + - "1086" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:41 GMT + - Fri, 20 Sep 2024 13:01:03 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1167,28 +1226,481 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49182e28-6f0c-4a34-84bf-e8b37b893623 + - a41a5af3-73e3-4d12-a0fb-4eda36c5c433 status: 200 OK code: 200 - duration: 1.141188584s - - id: 23 + duration: 98.94639ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.147415023Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9cc33afe-ee37-4e10-9953-fcec5167359e + status: 200 OK + code: 200 + duration: 40.634823ms + - id: 25 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:09.236836946Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4adba47c-6141-4c8b-b57d-bf3e6b314f1a + status: 200 OK + code: 200 + duration: 98.954986ms + - id: 26 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:17.347632142Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 222d7c8e-93a4-429d-a58c-3be41030afcd + status: 200 OK + code: 200 + duration: 106.126643ms + - id: 27 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:27.429197982Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b2c9f3fb-4572-42dd-87fb-1c94408a13b7 + status: 200 OK + code: 200 + duration: 80.530157ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1086 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:37.512972821Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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"}' + headers: + Content-Length: + - "1086" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6e256706-4429-4461-aa94-a508311c9d3b + status: 200 OK + code: 200 + duration: 76.074433ms + - id: 29 + 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1106 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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: + - "1106" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73d81eab-f8e7-496c-9ebb-f78abbd2d56f + status: 200 OK + code: 200 + duration: 79.385928ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1232 + uncompressed: false + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:47.828715249Z","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: + - "1232" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f8adb94-94ba-4abf-a540-27becd220c3b + status: 200 OK + code: 200 + duration: 212.083711ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 483 + uncompressed: false + body: '{"created_at":"2024-09-20T13:01:01.460826Z","domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","event_types":["email_delivered","email_dropped"],"id":"57bc0f16-88fb-466a-85ac-67cb46768a63","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:01.460826Z"}' + headers: + Content-Length: + - "483" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c11697fa-b881-4ee6-a1ff-a6cf1caa22a1 + status: 200 OK + code: 200 + duration: 62.413032ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 259 + uncompressed: false + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + headers: + Content-Length: + - "259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d83f002-e77f-4242-87a4-1f6092839c51 + status: 200 OK + code: 200 + duration: 747.836798ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -1200,13 +1712,62 @@ interactions: body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' headers: Content-Length: - - "227" + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 828881d2-a431-409f-bdf2-86dfb58a7850 + status: 200 OK + code: 200 + duration: 99.393805ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 + uncompressed: false + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + headers: + Content-Length: + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:41 GMT + - Fri, 20 Sep 2024 13:01:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1216,11 +1777,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67fae861-9ea9-4802-9d17-a29998352939 + - acd7b5e5-02a6-4640-b205-91dc4d21e63b status: 200 OK code: 200 - duration: 76.910214ms - - id: 24 + duration: 52.299121ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1255,7 +1816,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:41 GMT + - Fri, 20 Sep 2024 13:01:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1265,11 +1826,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72742189-31b7-416e-9165-dc3058f0d2f9 + - 53caf6b0-5f7d-480c-ade7-2c2ba5121a11 status: 200 OK code: 200 - duration: 60.00983ms - - id: 25 + duration: 58.533889ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1285,7 +1846,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -1293,18 +1854,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 365 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","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":"webhook-test","updated_at":"2024-09-20T13:01:39Z"}],"total_count":1}' headers: Content-Length: - - "238" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:41 GMT + - Fri, 20 Sep 2024 13:01:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1314,11 +1875,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92106275-253a-482c-bbac-13aca33c4a68 + - d15bad73-cf4f-46f5-9ac2-50456100fa0e status: 200 OK code: 200 - duration: 54.025568ms - - id: 26 + duration: 83.017454ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1334,7 +1895,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a method: GET response: proto: HTTP/2.0 @@ -1342,18 +1903,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 1232 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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.792517838Z","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: - - "1261" + - "1232" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:42 GMT + - Fri, 20 Sep 2024 13:01:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1363,11 +1924,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fde1837-bca4-4d3f-af15-b0a63b8b6e50 + - f4a153cc-70f5-406e-86ba-744809292e2a status: 200 OK code: 200 - duration: 220.603415ms - - id: 27 + duration: 239.911363ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1383,7 +1944,7 @@ interactions: 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a method: GET response: proto: HTTP/2.0 @@ -1391,18 +1952,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 1232 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","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.829882004Z","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: - - "1230" + - "1232" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:42 GMT + - Fri, 20 Sep 2024 13:01:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1412,11 +1973,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdd395ac-9ba1-4efa-9453-d57894a617f4 + - 7739bb8c-cadb-4423-bf46-bfe64662ee87 status: 200 OK code: 200 - duration: 292.375246ms - - id: 28 + duration: 70.57974ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1451,7 +2012,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:43 GMT + - Fri, 20 Sep 2024 13:01:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1461,11 +2022,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9dd9a46-4321-4db3-af6f-aaec3c7b1cb4 + - 869b08ca-d09e-4cf8-9af7-e43f5d69708e status: 200 OK code: 200 - duration: 1.030029271s - - id: 29 + duration: 792.050246ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1500,7 +2061,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:43 GMT + - Fri, 20 Sep 2024 13:01:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1510,11 +2071,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 988a0b5d-9b30-4394-b597-8d957447e394 + - cda9f8ce-d262-4ff9-a538-aabb984bbe27 status: 200 OK code: 200 - duration: 99.036556ms - - id: 30 + duration: 112.738067ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1549,7 +2110,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:43 GMT + - Fri, 20 Sep 2024 13:01:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1559,11 +2120,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56dab04c-ad71-4ec9-b11a-807170cd5d35 + - 616b926e-bffd-4674-972e-09d0c2d674f1 status: 200 OK code: 200 - duration: 79.106233ms - - id: 31 + duration: 66.919933ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1598,7 +2159,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:43 GMT + - Fri, 20 Sep 2024 13:01:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1608,11 +2169,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa7659f9-7a01-41b3-a7b5-fd1d659d862a + - 90d10c04-985b-4be0-8e8a-5651fe3f9738 status: 200 OK code: 200 - duration: 59.110442ms - - id: 32 + duration: 63.809983ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1628,7 +2189,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-credentials/f3063561-2f3d-4785-8fb8-555ba2c38099 + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/19d4a109-c812-4f9a-9d49-55ce89f05d5d method: GET response: proto: HTTP/2.0 @@ -1636,18 +2197,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 418 + content_length: 413 uncompressed: false - body: '{"access_key":"MpUM6jzH6YI71xxp5lDd","created_at":"2024-09-19T14:17:38.986835Z","id":"f3063561-2f3d-4785-8fb8-555ba2c38099","name":"tf-sns-credentials-pensive-khorana","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"9514c4a86cd4313b9912308d81c3a9ded970aa63","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + body: '{"access_key":"Woi412g4sUn9aJWD0Q1z","created_at":"2024-09-20T13:01:00.315579Z","id":"19d4a109-c812-4f9a-9d49-55ce89f05d5d","name":"tf-sns-credentials-zen-mclean","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"47214efc2e91d8d45617246b460b6d1a7f904032","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' headers: Content-Length: - - "418" + - "413" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:43 GMT + - Fri, 20 Sep 2024 13:01:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1657,11 +2218,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17d81952-6585-42b6-b88b-b3bba45be145 + - bce3682f-641c-4ce9-b0fe-847c1cdb80db status: 200 OK code: 200 - duration: 62.826336ms - - id: 33 + duration: 55.729879ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1688,7 +2249,7 @@ interactions: User-Agent: - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) X-Amz-Date: - - 20240919T141743Z + - 20240920T130150Z url: https://sns.mnq.fr-par.scaleway.com/ method: POST response: @@ -1726,7 +2287,7 @@ interactions: - txe9daacec-2d3f-45ab-9234-96c1dca4f378 + txf2b14c72-62c3-4462-8166-601e9cf18df0 headers: @@ -1735,11 +2296,11 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Thu, 19 Sep 2024 14:17:43 GMT + - Fri, 20 Sep 2024 13:01:50 GMT status: 200 OK code: 200 - duration: 28.819717ms - - id: 34 + duration: 27.010067ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1755,7 +2316,7 @@ interactions: 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/webhooks/c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63 method: GET response: proto: HTTP/2.0 @@ -1765,7 +2326,7 @@ interactions: trailer: {} content_length: 483 uncompressed: false - body: '{"created_at":"2024-09-19T14:17:39.768649Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered","email_dropped"],"id":"c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:17:39.768649Z"}' + body: '{"created_at":"2024-09-20T13:01:01.460826Z","domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","event_types":["email_delivered","email_dropped"],"id":"57bc0f16-88fb-466a-85ac-67cb46768a63","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:01.460826Z"}' headers: Content-Length: - "483" @@ -1774,7 +2335,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:43 GMT + - Fri, 20 Sep 2024 13:01:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1784,11 +2345,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8da14b32-b054-4a3f-b61d-7a2a0755e1a9 + - 743f1af8-9e67-4634-8615-5ccb0c7faedf status: 200 OK code: 200 - duration: 86.623003ms - - id: 35 + duration: 79.758394ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1804,7 +2365,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -1812,18 +2373,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 259 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' headers: Content-Length: - - "1261" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:44 GMT + - Fri, 20 Sep 2024 13:01:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1833,11 +2394,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f853411e-6b95-4bb3-bc50-c2ef90a2ebfe + - 3e0f1cf2-537a-43b9-bd85-cc56b74d53b9 status: 200 OK code: 200 - duration: 246.119052ms - - id: 36 + duration: 717.551689ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1853,7 +2414,7 @@ interactions: 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -1861,18 +2422,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 227 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' headers: Content-Length: - - "1230" + - "227" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:44 GMT + - Fri, 20 Sep 2024 13:01:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1882,11 +2443,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 401ae64c-5ddf-46d1-897d-c38222b9b30d + - 6156e4e2-b114-436e-a47f-8a9b6961934b status: 200 OK code: 200 - duration: 190.029853ms - - id: 37 + duration: 99.110607ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1902,7 +2463,7 @@ interactions: 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -1910,18 +2471,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 238 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "259" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:44 GMT + - Fri, 20 Sep 2024 13:01:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1931,11 +2492,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d382c61-1c61-47c0-a60f-c9688f6617de + - e8f7e2b4-0bfc-4466-862b-5d244c1894eb status: 200 OK code: 200 - duration: 917.420155ms - - id: 38 + duration: 53.255272ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1951,7 +2512,7 @@ interactions: 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -1959,18 +2520,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 238 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "227" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:44 GMT + - Fri, 20 Sep 2024 13:01:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1980,11 +2541,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3ff7108-ef28-4159-8ce4-8b299f533a2e + - 5c914711-b0f7-40b0-8c36-788dfe500f05 status: 200 OK code: 200 - duration: 97.363237ms - - id: 39 + duration: 57.560947ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2000,26 +2561,24 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 0 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: "" headers: - Content-Length: - - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:44 GMT + - Fri, 20 Sep 2024 13:01:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2029,11 +2588,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b73e23c-4f03-4fd2-a258-b9d4f65f3da2 - status: 200 OK - code: 200 - duration: 57.97483ms - - id: 40 + - d1c80e15-2deb-4339-a5c6-cf1ad42cb596 + status: 204 No Content + code: 204 + duration: 106.294084ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2049,7 +2608,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a method: GET response: proto: HTTP/2.0 @@ -2057,18 +2616,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 1232 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:52.252339982Z","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: - - "238" + - "1232" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:44 GMT + - Fri, 20 Sep 2024 13:01:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2078,11 +2637,65 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fde13ff5-09c2-49fd-b429-817c8a24bda7 + - 02e7d6ab-2ee4-4886-9c3e-3f37c0970ecd status: 200 OK code: 200 - duration: 55.227178ms - - id: 41 + duration: 56.908953ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 145 + transfer_encoding: [] + trailer: {} + host: sns.mnq.fr-par.scaleway.com + remote_addr: "" + request_uri: "" + body: Action=DeleteTopic&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - DeleteTopic + TopicArn: + - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + Version: + - "2010-03-31" + headers: + Content-Length: + - "145" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + User-Agent: + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T130152Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 211 + uncompressed: false + body: | + + + tx8b37d0e9-fe4f-4e07-9479-46b1daab1998 + + + headers: + Content-Length: + - "211" + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Fri, 20 Sep 2024 13:01:52 GMT + status: 200 OK + code: 200 + duration: 90.969473ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2098,7 +2711,7 @@ interactions: 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/webhooks/c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/19d4a109-c812-4f9a-9d49-55ce89f05d5d method: DELETE response: proto: HTTP/2.0 @@ -2115,7 +2728,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:45 GMT + - Fri, 20 Sep 2024 13:01:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2125,65 +2738,111 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d8fc02d-3eb3-41f5-92be-bd7f57cc142d + - 1b0cd70d-ac04-4586-8ceb-d0eabf00289a status: 204 No Content code: 204 - duration: 122.723448ms - - id: 42 + duration: 105.478946ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 145 + content_length: 2 transfer_encoding: [] trailer: {} - host: sns.mnq.fr-par.scaleway.com + host: api.scaleway.com remote_addr: "" request_uri: "" - body: Action=DeleteTopic&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 - form: - Action: - - DeleteTopic - TopicArn: - - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - Version: - - "2010-03-31" + body: '{}' + form: {} headers: - Content-Length: - - "145" Content-Type: - - application/x-www-form-urlencoded; charset=utf-8 + - application/json User-Agent: - - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) - X-Amz-Date: - - 20240919T141745Z - url: https://sns.mnq.fr-par.scaleway.com/ + - 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/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/revoke method: POST response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1016 + uncompressed: false + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.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:53.273252691Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' + headers: + Content-Length: + - "1016" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a00d53a-24ce-4dac-a9fc-2d0f8c9e2e29 + status: 200 OK + code: 200 + duration: 1.003752476s + - id: 55 + request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 + content_length: 0 transfer_encoding: [] trailer: {} - content_length: 211 + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + 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/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1168 uncompressed: false - body: | - - - tx05b56ac0-3c2c-4c46-ba8a-fc7484046afc - - + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.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:53.315442760Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:53.273252Z","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: - - "211" + - "1168" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - - text/xml; charset=UTF-8 + - application/json Date: - - Thu, 19 Sep 2024 14:17:45 GMT + - Fri, 20 Sep 2024 13:01:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fecd71e5-c5ee-4513-b536-f3d7edddf242 status: 200 OK code: 200 - duration: 73.097876ms - - id: 43 + duration: 61.715091ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2199,24 +2858,75 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-credentials/f3063561-2f3d-4785-8fb8-555ba2c38099 - method: DELETE + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=webhook-test.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: 0 + content_length: 365 uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:01:39Z"}],"total_count":1}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 20 Sep 2024 13:01:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8465377d-f6c6-422d-a9a3-bedcd0dd0189 + status: 200 OK + code: 200 + duration: 66.934173ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/webhook-test.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: - - Thu, 19 Sep 2024 14:17:45 GMT + - Fri, 20 Sep 2024 13:01:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2226,11 +2936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb5225e2-4ff7-4e1c-85bd-4fefa9e028e3 - status: 204 No Content - code: 204 - duration: 81.366063ms - - id: 44 + - 9104cc97-531f-4d4c-a9cb-92f422bc8485 + status: 200 OK + code: 200 + duration: 440.59615ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2246,7 +2956,7 @@ interactions: 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/webhooks/c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63 method: GET response: proto: HTTP/2.0 @@ -2256,7 +2966,7 @@ interactions: trailer: {} content_length: 131 uncompressed: false - body: '{"message":"resource is not found","resource":"webhook_id","resource_id":"c0043ff8-7cc2-495f-bb6c-7cdaeab8c83a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"webhook_id","resource_id":"57bc0f16-88fb-466a-85ac-67cb46768a63","type":"not_found"}' headers: Content-Length: - "131" @@ -2265,7 +2975,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:17:45 GMT + - Fri, 20 Sep 2024 13:01:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2275,7 +2985,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68289946-0175-49f8-ae41-a6475a071c26 + - fd0f679c-0072-4580-823f-cfdf29d04f66 status: 404 Not Found code: 404 - duration: 41.193781ms + duration: 19.846423ms diff --git a/internal/services/tem/testdata/webhook-update.cassette.yaml b/internal/services/tem/testdata/webhook-update.cassette.yaml index 0550bbc99..5a7991048 100644 --- a/internal/services/tem/testdata/webhook-update.cassette.yaml +++ b/internal/services/tem/testdata/webhook-update.cassette.yaml @@ -2,104 +2,6 @@ version: 2 interactions: - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=webhook-test.scaleway-terraform.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1261 - uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' - headers: - Content-Length: - - "1261" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:39 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: - - b96e82ef-e452-4c5c-a296-29718ab59244 - status: 200 OK - code: 200 - duration: 261.979276ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/d1b6673c-7ad6-4cb6-84a1-a094414c8261 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1230 - uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: - - "1230" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:40 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: - - 824a4507-679f-44f2-8796-d1572289f8d1 - status: 200 OK - code: 200 - duration: 371.546069ms - - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -134,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:40 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -144,11 +46,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f496ddb-cd8b-45ca-8193-9657c4d6c1b6 + - 6810d934-3ab8-4468-9e10-30bfedc59721 status: 200 OK code: 200 - duration: 939.808383ms - - id: 3 + duration: 712.84752ms + - id: 1 request: proto: HTTP/1.1 proto_major: 1 @@ -183,9 +85,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:40 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -193,11 +95,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d08dc382-79f0-490d-85cb-1799d6c921a7 + - c2b0bb83-8263-45c8-a4c7-7e5cb4dfb88c status: 200 OK code: 200 - duration: 100.803533ms - - id: 4 + duration: 509.086833ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -232,9 +134,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:40 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -242,11 +144,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14b9990a-65b1-4391-a6f8-9e2def1d2524 + - 04ce6503-0375-4d07-bf51-9ba3c580ca3e status: 200 OK code: 200 - duration: 65.657041ms - - id: 5 + duration: 65.656966ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -281,58 +183,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:40 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: - - 7017eaa2-2e40-43ce-9202-97e74fad6f97 - status: 200 OK - code: 200 - duration: 63.9774ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=webhook-test.scaleway-terraform.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1261 - uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' - headers: - Content-Length: - - "1261" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:41 GMT + - Fri, 20 Sep 2024 13:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -340,11 +193,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ea645cc-360e-4a35-9e14-15507e7bd147 + - 3a2d2290-c99c-48a3-b501-a2854dab3ac9 status: 200 OK code: 200 - duration: 198.650156ms - - id: 7 + duration: 87.781673ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -360,7 +213,7 @@ interactions: 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -368,20 +221,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 259 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' headers: Content-Length: - - "1230" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:41 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -389,11 +242,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1092725b-8fda-4d68-98cc-a56479449b34 + - 81813679-5aa7-4c02-ae78-de63945b5632 status: 200 OK code: 200 - duration: 58.312434ms - - id: 8 + duration: 664.146742ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -409,7 +262,7 @@ interactions: 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -417,20 +270,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 227 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' headers: Content-Length: - - "259" + - "227" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:41 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -438,11 +291,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 228f1981-4f2a-47fe-9673-8bc181beda36 + - f5eeb3f9-754d-4a5d-a61a-999f5efbf790 status: 200 OK code: 200 - duration: 757.026842ms - - id: 9 + duration: 90.45829ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -458,7 +311,7 @@ interactions: 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -466,20 +319,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 238 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "227" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:41 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -487,11 +340,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f9ae2f1-6462-4615-9e74-a1b40cd82b55 + - 1651dd66-3420-4097-a6cb-08cc5c6d342f status: 200 OK code: 200 - duration: 82.017637ms - - id: 10 + duration: 51.521398ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -526,9 +379,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:41 GMT + - Fri, 20 Sep 2024 13:01:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -536,11 +389,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47fea564-29b5-4dc5-9081-b580e7778f77 + - 6d299c89-8fdc-4a3c-b819-d641d866ad70 status: 200 OK code: 200 - duration: 55.054043ms - - id: 11 + duration: 48.884099ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -556,7 +409,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test-1.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: proto: HTTP/2.0 @@ -564,20 +417,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 33 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"dns_zones":[],"total_count":0}' headers: Content-Length: - - "238" + - "33" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:41 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -585,22 +438,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce1b110b-5728-4d67-bce2-2a757daa16e8 + - e38754fc-7952-43ab-b3c5-b39d92bd574b status: 200 OK code: 200 - duration: 59.789039ms - - id: 12 + duration: 114.68108ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 172 + content_length: 159 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-sns-credentials-reverent-hodgkin","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"sns-credentials-update","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}' form: {} headers: Content-Type: @@ -615,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 486 + content_length: 473 uncompressed: false - body: '{"access_key":"PnC5Z6lNe7prhdP9nQMg","created_at":"2024-09-19T14:26:42.364065885Z","id":"af186305-f1d9-4c03-a627-73db87254a4c","name":"tf-sns-credentials-reverent-hodgkin","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"4aad3ecea5bd953a990f5fd3e4b68544b88124e2","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + body: '{"access_key":"SIHObl1rPYU8uRxqmovk","created_at":"2024-09-20T13:01:01.198576712Z","id":"8754eb69-c3b0-4370-9261-fb34ee168ed5","name":"sns-credentials-update","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"5a37595bcc34497cb7a3f452d69030c0848b4faf","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' headers: Content-Length: - - "486" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:42 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,11 +489,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c32ab1c6-05b3-42aa-a8ea-584db6e6db8b + - 7062aea3-90a3-4bf8-acb7-eca6d12cd029 status: 200 OK code: 200 - duration: 91.713096ms - - id: 13 + duration: 114.495608ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -656,7 +509,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-credentials/af186305-f1d9-4c03-a627-73db87254a4c + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/8754eb69-c3b0-4370-9261-fb34ee168ed5 method: GET response: proto: HTTP/2.0 @@ -664,20 +517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 406 uncompressed: false - body: '{"access_key":"PnC5Z6lNe7prhdP9nQMg","created_at":"2024-09-19T14:26:42.364065Z","id":"af186305-f1d9-4c03-a627-73db87254a4c","name":"tf-sns-credentials-reverent-hodgkin","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"4aad3ecea5bd953a990f5fd3e4b68544b88124e2","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + body: '{"access_key":"SIHObl1rPYU8uRxqmovk","created_at":"2024-09-20T13:01:01.198576Z","id":"8754eb69-c3b0-4370-9261-fb34ee168ed5","name":"sns-credentials-update","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"5a37595bcc34497cb7a3f452d69030c0848b4faf","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' headers: Content-Length: - - "419" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:42 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,11 +538,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 382d4eb0-90a5-416d-97ea-838001833c43 + - 430c57fa-b23f-417c-a811-9b71a227ee1c status: 200 OK code: 200 - duration: 49.072902ms - - id: 14 + duration: 50.393098ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -724,9 +577,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:42 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,11 +587,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ae3ab7b-775f-424e-a90f-fe7d1e4fb140 + - 9e3c970c-47f2-45a7-ad27-78a66d146d11 status: 200 OK code: 200 - duration: 84.108806ms - - id: 15 + duration: 66.5ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -767,7 +620,7 @@ interactions: User-Agent: - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) X-Amz-Date: - - 20240919T142642Z + - 20240920T130101Z url: https://sns.mnq.fr-par.scaleway.com/ method: POST response: @@ -784,7 +637,7 @@ interactions: arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - txd5dcffe1-bf56-4de6-a95a-60096d0a73c8 + tx89fd005a-1c49-4bbc-a7af-8953ee508a74 headers: @@ -793,11 +646,11 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Thu, 19 Sep 2024 14:26:42 GMT + - Fri, 20 Sep 2024 13:01:01 GMT status: 200 OK code: 200 - duration: 297.843762ms - - id: 16 + duration: 21.250252ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -824,7 +677,7 @@ interactions: User-Agent: - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) X-Amz-Date: - - 20240919T142642Z + - 20240920T130101Z url: https://sns.mnq.fr-par.scaleway.com/ method: POST response: @@ -862,7 +715,7 @@ interactions: - txfdde5361-9039-441e-b6ab-009a6337fd57 + txa4630f5e-4e88-4bea-9d70-31dfce924eda headers: @@ -871,29 +724,29 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Thu, 19 Sep 2024 14:26:42 GMT + - Fri, 20 Sep 2024 13:01:01 GMT status: 200 OK code: 200 - duration: 172.02432ms - - id: 17 + duration: 24.741484ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 271 + content_length: 116 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}' + body: '{"domain":"scaleway-terraform.com","subdomain":"webhook-test-1","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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks + url: https://api.scaleway.com/domain/v2beta1/dns-zones method: POST response: proto: HTTP/2.0 @@ -901,20 +754,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 334 uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' + 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":"webhook-test-1","updated_at":"2024-09-20T13:01:01Z"}' headers: Content-Length: - - "466" + - "334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:43 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -922,11 +775,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 252564f7-bfe7-406a-9043-7cb5fdb205cf + - 8751edad-429c-4315-ab01-3dec3991798c status: 200 OK code: 200 - duration: 522.980961ms - - id: 18 + duration: 534.314387ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -942,7 +795,7 @@ interactions: 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/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test-1.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: proto: HTTP/2.0 @@ -950,20 +803,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 367 uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","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":"webhook-test-1","updated_at":"2024-09-20T13:01:01Z"}],"total_count":1}' headers: Content-Length: - - "466" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:43 GMT + - Fri, 20 Sep 2024 13:01:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -971,48 +824,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53d33674-5118-4536-b63d-84e21ebbd25b + - 3757fe83-fcf3-416a-b2ec-d3732aeefb6a status: 200 OK code: 200 - duration: 61.141961ms - - id: 19 + duration: 106.152216ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 143 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"webhook-test-1.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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d - method: GET + 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: 466 + content_length: 1213 uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.302420Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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.418278121Z","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: - - "466" + - "1213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:43 GMT + - Fri, 20 Sep 2024 13:01:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1020,11 +875,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84747905-588a-4631-907f-c95c32f72294 + - 0f316c37-244e-4005-ab46-260ce7bb6051 status: 200 OK code: 200 - duration: 61.150316ms - - id: 20 + duration: 514.907419ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1040,7 +895,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e method: GET response: proto: HTTP/2.0 @@ -1048,20 +903,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 1213 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.302420Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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.589156373Z","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: - - "1261" + - "1213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:44 GMT + - Fri, 20 Sep 2024 13:01:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1069,48 +924,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39d3145f-d5fa-48a9-b520-035f8e15a160 + - c69ff85d-2fc2-446e-9a07-cfc358134677 status: 200 OK code: 200 - duration: 369.184249ms - - id: 21 + duration: 206.554136ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 271 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"domain_id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}' form: {} headers: + 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 466 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: '{"created_at":"2024-09-20T13:01:02.736593Z","domain_id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","event_types":["email_delivered"],"id":"d62cc135-1f9a-4391-b228-d461ae3d9225","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:02.736593Z"}' headers: Content-Length: - - "1230" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:44 GMT + - Fri, 20 Sep 2024 13:01:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1118,11 +975,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a17a348a-4cea-4dcf-95ea-edf687a203cc + - 6253dee5-a06b-4e00-a479-1580922388c8 status: 200 OK code: 200 - duration: 59.55582ms - - id: 22 + duration: 124.047071ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1138,7 +995,7 @@ interactions: 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/d62cc135-1f9a-4391-b228-d461ae3d9225 method: GET response: proto: HTTP/2.0 @@ -1146,20 +1003,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 466 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"created_at":"2024-09-20T13:01:02.736593Z","domain_id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","event_types":["email_delivered"],"id":"d62cc135-1f9a-4391-b228-d461ae3d9225","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:02.736593Z"}' headers: Content-Length: - - "259" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:44 GMT + - Fri, 20 Sep 2024 13:01:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1167,11 +1024,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aeda6df3-2b77-4500-934f-2dfc93337000 + - da500353-6b27-4ca2-afe1-4ddc0409cb7c status: 200 OK code: 200 - duration: 781.104193ms - - id: 23 + duration: 58.792104ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1187,7 +1044,7 @@ interactions: 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e method: GET response: proto: HTTP/2.0 @@ -1195,20 +1052,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 1213 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.302420Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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.906336962Z","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: - - "227" + - "1213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:44 GMT + - Fri, 20 Sep 2024 13:01:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1216,48 +1073,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a498a40-281e-4538-936e-aaf42fd13adf + - c7b99928-62c2-464b-9899-dada940d219f status: 200 OK code: 200 - duration: 89.580153ms - - id: 24 + duration: 239.043046ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 1090 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.933940817Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "238" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:44 GMT + - Fri, 20 Sep 2024 13:01:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1265,48 +1124,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98c4f1c0-57d7-4da0-a337-86ffdfa9a9cf + - 15883a2d-37ae-46b8-951c-8d5974574f5b status: 200 OK code: 200 - duration: 54.563215ms - - id: 25 + duration: 67.893047ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 1090 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:03.498766041Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "238" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:44 GMT + - Fri, 20 Sep 2024 13:01:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1314,48 +1175,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20d44742-9d7f-4cc9-9c89-bf46336b9cc9 + - c574be61-a188-4e4d-a5fd-c01781fb0d19 status: 200 OK code: 200 - duration: 987.785894ms - - id: 26 + duration: 41.134127ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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?name=webhook-test.scaleway-terraform.com - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 1090 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:04.596431362Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "1261" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:46 GMT + - Fri, 20 Sep 2024 13:01:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1363,48 +1226,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2c64ec9-93d8-4103-9058-ac1079bb9bd1 + - b62d8e8c-5851-42f6-894c-4e72e5b61311 status: 200 OK code: 200 - duration: 293.210598ms - - id: 27 + duration: 97.469522ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 1090 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:06.642798775Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "1230" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:46 GMT + - Fri, 20 Sep 2024 13:01:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1412,48 +1277,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49a9613e-89fb-47a4-9457-686d7f3c22c6 + - be052c86-43cd-4b27-9e9a-01510e8f19ca status: 200 OK code: 200 - duration: 57.236617ms - - id: 28 + duration: 36.641924ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 1090 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:10.730310339Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "259" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:46 GMT + - Fri, 20 Sep 2024 13:01:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1461,48 +1328,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e921da9-d2af-41fb-b0e8-beb476bd9f87 + - 2eb15a25-a18e-48aa-8844-0ed108e10f77 status: 200 OK code: 200 - duration: 807.651527ms - - id: 29 + duration: 87.817304ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 1090 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:18.777172291Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "227" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:46 GMT + - Fri, 20 Sep 2024 13:01:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1510,48 +1379,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 207f7521-f3fe-4fbc-a45f-5d7623d95eab + - 2cb7912c-ca82-4d0a-b207-84385a83dcfe status: 200 OK code: 200 - duration: 84.387662ms - - id: 30 + duration: 44.301581ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 1090 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:28.862336556Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "238" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:47 GMT + - Fri, 20 Sep 2024 13:01:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1559,48 +1430,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a5e9def-c156-4944-a694-2a553d03f999 + - d784faf8-fc1d-4fa4-a25c-6e0b0ec0340a status: 200 OK code: 200 - duration: 136.030834ms - - id: 31 + duration: 96.104629ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 1090 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:38.955627207Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "238" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:47 GMT + - Fri, 20 Sep 2024 13:01:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1608,48 +1481,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b190e2f-89a3-4b6e-bfaf-b34f4c8073df + - 6075ab90-1299-4e55-8128-ef21f9cd822b status: 200 OK code: 200 - duration: 64.986382ms - - id: 32 + duration: 84.147856ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/mnq/v1beta1/regions/fr-par/sns-credentials/af186305-f1d9-4c03-a627-73db87254a4c - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 1090 uncompressed: false - body: '{"access_key":"PnC5Z6lNe7prhdP9nQMg","created_at":"2024-09-19T14:26:42.364065Z","id":"af186305-f1d9-4c03-a627-73db87254a4c","name":"tf-sns-credentials-reverent-hodgkin","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"4aad3ecea5bd953a990f5fd3e4b68544b88124e2","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:49.024741287Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "419" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:47 GMT + - Fri, 20 Sep 2024 13:01:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1657,126 +1532,101 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 123886e8-1aa1-4c3b-98ad-ba5ba915477d + - d42b7d05-ce04-41fa-9e06-74616dc38aef status: 200 OK code: 200 - duration: 78.412544ms - - id: 33 + duration: 68.803276ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 152 + content_length: 2 transfer_encoding: [] trailer: {} - host: sns.mnq.fr-par.scaleway.com + host: api.scaleway.com remote_addr: "" request_uri: "" - body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 - form: - Action: - - GetTopicAttributes - TopicArn: - - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - Version: - - "2010-03-31" + body: '{}' + form: {} headers: - Content-Length: - - "152" Content-Type: - - application/x-www-form-urlencoded; charset=utf-8 + - application/json User-Agent: - - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) - X-Amz-Date: - - 20240919T142647Z - url: https://sns.mnq.fr-par.scaleway.com/ + - 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/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check method: POST response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1046 + content_length: 1090 uncompressed: false - body: | - - - - - Owner - project-105bdce1-64c0-48ab-899d-868455867ecf - - - SubscriptionsConfirmed - 0 - - - SubscriptionsDeleted - 0 - - - SubscriptionsPending - 0 - - - TopicArn - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - - - - - tx035828e0-3bf8-4561-b93c-33ecff0b014b - - + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:59.110188475Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "1046" + - "1090" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - - text/xml; charset=UTF-8 + - application/json Date: - - Thu, 19 Sep 2024 14:26:47 GMT + - Fri, 20 Sep 2024 13:01:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5224c34-145b-4844-95b9-1431810478f6 status: 200 OK code: 200 - duration: 36.009774ms - - id: 34 + duration: 89.630267ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 1090 uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:09.211012540Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "466" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:47 GMT + - Fri, 20 Sep 2024 13:02:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1784,48 +1634,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2641ea53-374c-4987-883b-393ce14b8652 + - adcc3df3-ef76-4ddb-9838-55a6ef7470e5 status: 200 OK code: 200 - duration: 67.019903ms - - id: 35 + duration: 86.354314ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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?name=webhook-test.scaleway-terraform.com - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 1090 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:19.292693615Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "1261" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:47 GMT + - Fri, 20 Sep 2024 13:02:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1833,48 +1685,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 962a74a1-06d0-4dba-940a-8804a765c010 + - c28b279f-f875-4b1b-918c-3012cfeeb046 status: 200 OK code: 200 - duration: 268.487453ms - - id: 36 + duration: 97.799968ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 1090 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:29.377202535Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "1230" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:48 GMT + - Fri, 20 Sep 2024 13:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1882,48 +1736,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41f3217c-b3b4-4ee7-b4b8-371228733f78 + - da29a623-dd4e-4623-ab66-1c8831e36e10 status: 200 OK code: 200 - duration: 304.122666ms - - id: 37 + duration: 70.601187ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 1090 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:39.518765678Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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"}' headers: Content-Length: - - "259" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:48 GMT + - Fri, 20 Sep 2024 13:02:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1931,48 +1787,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0995f9b8-a409-4f1b-b913-dbe97cc78e59 + - b6965896-dab4-4ebb-af4a-0d5a9ddda9d9 status: 200 OK code: 200 - duration: 1.760300311s - - id: 38 + duration: 136.669659ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 1110 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","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: - - "227" + - "1110" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:49 GMT + - Fri, 20 Sep 2024 13:02:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1980,11 +1838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd9be953-4f99-4662-be44-c836ccc5c97b + - ae88ebe2-990c-41dc-8175-1fb6185ea50a status: 200 OK code: 200 - duration: 83.855881ms - - id: 39 + duration: 67.370432ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2000,7 +1858,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e method: GET response: proto: HTTP/2.0 @@ -2008,20 +1866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 1236 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:49.789209524Z","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: - - "238" + - "1236" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:49 GMT + - Fri, 20 Sep 2024 13:02:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2029,11 +1887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42dfd032-2f4f-4e0c-94ae-e5e142340752 + - 5d986db6-0d1b-49b0-ab06-eb3c92b22811 status: 200 OK code: 200 - duration: 51.347106ms - - id: 40 + duration: 188.264868ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2049,7 +1907,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/d62cc135-1f9a-4391-b228-d461ae3d9225 method: GET response: proto: HTTP/2.0 @@ -2057,20 +1915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 466 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"created_at":"2024-09-20T13:01:02.736593Z","domain_id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","event_types":["email_delivered"],"id":"d62cc135-1f9a-4391-b228-d461ae3d9225","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:02.736593Z"}' headers: Content-Length: - - "238" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:49 GMT + - Fri, 20 Sep 2024 13:02:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2078,11 +1936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bf93fc8-3994-49e3-a1b2-f747667cc02f + - dd084e75-6a94-40dd-82bf-8ead6686d5c2 status: 200 OK code: 200 - duration: 58.297391ms - - id: 41 + duration: 66.022832ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2098,7 +1956,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2106,20 +1964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 259 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' headers: Content-Length: - - "1261" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:49 GMT + - Fri, 20 Sep 2024 13:02:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2127,11 +1985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3794457b-3c2d-4f9c-ae9b-c78878a027a2 + - 877a3d2a-2a17-4f58-9d35-7b9413b95c7d status: 200 OK code: 200 - duration: 286.391599ms - - id: 42 + duration: 832.808504ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2147,7 +2005,7 @@ interactions: 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2155,20 +2013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 227 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' headers: Content-Length: - - "1230" + - "227" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:50 GMT + - Fri, 20 Sep 2024 13:02:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2176,11 +2034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 840a8079-5bd5-4ebd-a1fb-8552091eb652 + - 120b5845-f048-470e-a361-2824e096d0e5 status: 200 OK code: 200 - duration: 59.757294ms - - id: 43 + duration: 84.651261ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2196,7 +2054,7 @@ interactions: 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2204,20 +2062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 238 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "259" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:50 GMT + - Fri, 20 Sep 2024 13:02:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2225,11 +2083,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42807d8c-b29f-4caa-8a20-6da96e5e2f05 + - 5f4d44b9-a0f9-4dfe-81f4-693638726fae status: 200 OK code: 200 - duration: 744.333107ms - - id: 44 + duration: 65.163615ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2245,7 +2103,7 @@ interactions: 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2253,20 +2111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 238 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "227" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:50 GMT + - Fri, 20 Sep 2024 13:02:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2274,11 +2132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa57b0c4-8895-4f4b-bacd-0fabfc116e89 + - 1d537321-f212-4380-9061-225e571353a7 status: 200 OK code: 200 - duration: 100.62614ms - - id: 45 + duration: 53.851351ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2294,7 +2152,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test-1.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2302,20 +2160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 367 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","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":"webhook-test-1","updated_at":"2024-09-20T13:02:39Z"}],"total_count":1}' headers: Content-Length: - - "238" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:50 GMT + - Fri, 20 Sep 2024 13:02:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2323,11 +2181,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49410fc4-e4dc-4d60-9bc0-b20a5ec248cc + - 055b18a7-e1d4-44bf-a777-f4e8352d786a status: 200 OK code: 200 - duration: 72.50951ms - - id: 46 + duration: 66.379769ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2343,7 +2201,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e method: GET response: proto: HTTP/2.0 @@ -2351,20 +2209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 1236 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:51.626732512Z","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: - - "238" + - "1236" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:50 GMT + - Fri, 20 Sep 2024 13:02:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2372,11 +2230,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d57d666-a7fb-40d0-9501-ec101179ed00 + - 1a66ce22-211c-4602-bf0c-c12cfd4ccbf5 status: 200 OK code: 200 - duration: 46.905325ms - - id: 47 + duration: 241.315708ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2392,7 +2250,7 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-credentials/af186305-f1d9-4c03-a627-73db87254a4c + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e method: GET response: proto: HTTP/2.0 @@ -2400,20 +2258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 1236 uncompressed: false - body: '{"access_key":"PnC5Z6lNe7prhdP9nQMg","created_at":"2024-09-19T14:26:42.364065Z","id":"af186305-f1d9-4c03-a627-73db87254a4c","name":"tf-sns-credentials-reverent-hodgkin","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"4aad3ecea5bd953a990f5fd3e4b68544b88124e2","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:51.698702917Z","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: - - "419" + - "1236" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:50 GMT + - Fri, 20 Sep 2024 13:02:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2421,97 +2279,19 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fab2be27-e358-478c-b538-cb2b9b894b0b + - 9190c861-67b7-4fab-a483-d15935c6ef18 status: 200 OK code: 200 - duration: 62.11694ms - - id: 48 + duration: 75.568814ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 152 + content_length: 0 transfer_encoding: [] trailer: {} - host: sns.mnq.fr-par.scaleway.com - remote_addr: "" - request_uri: "" - body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 - form: - Action: - - GetTopicAttributes - TopicArn: - - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - Version: - - "2010-03-31" - headers: - Content-Length: - - "152" - Content-Type: - - application/x-www-form-urlencoded; charset=utf-8 - User-Agent: - - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) - X-Amz-Date: - - 20240919T142650Z - url: https://sns.mnq.fr-par.scaleway.com/ - method: POST - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 1046 - uncompressed: false - body: | - - - - - Owner - project-105bdce1-64c0-48ab-899d-868455867ecf - - - SubscriptionsConfirmed - 0 - - - SubscriptionsDeleted - 0 - - - SubscriptionsPending - 0 - - - TopicArn - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - - - - - tx28b8dcc4-de8a-4f35-a322-672f0c777751 - - - headers: - Content-Length: - - "1046" - Content-Type: - - text/xml; charset=UTF-8 - Date: - - Thu, 19 Sep 2024 14:26:50 GMT - status: 200 OK - code: 200 - duration: 29.546634ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com + host: api.scaleway.com remote_addr: "" request_uri: "" body: "" @@ -2519,7 +2299,7 @@ interactions: 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/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2527,20 +2307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 259 uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_delivered"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' + body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' headers: Content-Length: - - "466" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:50 GMT + - Fri, 20 Sep 2024 13:02:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2548,11 +2328,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d08d2dca-14d2-440f-ab98-4d552fac3737 + - 2eccc482-41b5-4115-9ae6-bc0840857f3d status: 200 OK code: 200 - duration: 62.556386ms - - id: 50 + duration: 805.030549ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2568,7 +2348,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2576,20 +2356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 227 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' headers: Content-Length: - - "1261" + - "227" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:51 GMT + - Fri, 20 Sep 2024 13:02:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,11 +2377,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3664106a-4a09-43e6-a7be-43060533a74b + - f4768d07-2efb-4198-b331-eda1ff186b18 status: 200 OK code: 200 - duration: 230.298976ms - - id: 51 + duration: 136.75966ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2617,7 +2397,7 @@ interactions: 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2625,20 +2405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 238 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "1230" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:51 GMT + - Fri, 20 Sep 2024 13:02:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2646,11 +2426,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d6471d4-a02c-44c7-807c-d79efdbf24c6 + - 7e377678-f985-4998-9ce9-ffc49594ae5a status: 200 OK code: 200 - duration: 213.332111ms - - id: 52 + duration: 56.47322ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2666,7 +2446,7 @@ interactions: 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf method: GET response: proto: HTTP/2.0 @@ -2674,20 +2454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259 + content_length: 238 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' headers: Content-Length: - - "259" + - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:51 GMT + - Fri, 20 Sep 2024 13:02:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2695,11 +2475,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a10b6f38-c222-4feb-8c6e-68a7fe4b0bd5 + - a23cfa31-7b65-4f1b-8ca9-2c0509c16437 status: 200 OK code: 200 - duration: 855.974112ms - - id: 53 + duration: 50.907413ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2715,7 +2495,7 @@ interactions: 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/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/8754eb69-c3b0-4370-9261-fb34ee168ed5 method: GET response: proto: HTTP/2.0 @@ -2723,20 +2503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 406 uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' + body: '{"access_key":"SIHObl1rPYU8uRxqmovk","created_at":"2024-09-20T13:01:01.198576Z","id":"8754eb69-c3b0-4370-9261-fb34ee168ed5","name":"sns-credentials-update","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"5a37595bcc34497cb7a3f452d69030c0848b4faf","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' headers: Content-Length: - - "227" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:51 GMT + - Fri, 20 Sep 2024 13:02:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2744,60 +2524,68 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d80c5208-500d-4bef-9feb-ccfd31c95536 + - a5010ce6-b0dc-4267-a1a4-0e4d93cde63f status: 200 OK code: 200 - duration: 86.237475ms - - id: 54 + duration: 76.349899ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 152 transfer_encoding: [] trailer: {} - host: api.scaleway.com + host: sns.mnq.fr-par.scaleway.com remote_addr: "" request_uri: "" - body: "" - form: {} + body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - GetTopicAttributes + TopicArn: + - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + Version: + - "2010-03-31" headers: + Content-Length: + - "152" + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T130252Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 315 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: | + + + Sender + NotFound + Topic "test-mnq-sns-topic-basic" does not exist. + + tx1ac2c345-179e-4196-b2ec-d28ee1623989 + headers: Content-Length: - - "238" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "315" Content-Type: - - application/json + - text/xml; charset=UTF-8 Date: - - Thu, 19 Sep 2024 14:26:52 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: - - baf732cb-37b1-4d47-8da3-9417a8a6191f - status: 200 OK - code: 200 - duration: 49.586118ms - - id: 55 + - Fri, 20 Sep 2024 13:02:52 GMT + status: 404 Not Found + code: 404 + duration: 23.607332ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2813,28 +2601,26 @@ interactions: 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/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/d62cc135-1f9a-4391-b228-d461ae3d9225 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 238 + content_length: 0 uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' + body: "" headers: - Content-Length: - - "238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:52 GMT + - Fri, 20 Sep 2024 13:02:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2842,62 +2628,68 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cb73e3c-ebd8-427d-a967-c8d65f1dd25e - status: 200 OK - code: 200 - duration: 52.725811ms - - id: 56 + - f001c039-8fca-4b84-b0ac-09d361a90929 + status: 204 No Content + code: 204 + duration: 132.296562ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 67 + content_length: 145 transfer_encoding: [] trailer: {} - host: api.scaleway.com + host: sns.mnq.fr-par.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"terraform-webhook-updated","event_types":["email_queued"]}' - form: {} + body: Action=DeleteTopic&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 + form: + Action: + - DeleteTopic + TopicArn: + - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic + Version: + - "2010-03-31" headers: + Content-Length: + - "145" Content-Type: - - application/json + - application/x-www-form-urlencoded; charset=utf-8 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/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d - method: PATCH + - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) + X-Amz-Date: + - 20240920T130252Z + url: https://sns.mnq.fr-par.scaleway.com/ + method: POST response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 315 uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_queued"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' + body: | + + + Sender + NotFound + Topic "test-mnq-sns-topic-basic" does not exist. + + tx2a5f381d-d17f-493e-9ac9-e0414f3b349e + headers: Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "315" Content-Type: - - application/json + - text/xml; charset=UTF-8 Date: - - Thu, 19 Sep 2024 14:26:52 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: - - c8a6d11b-4e32-4cb4-be1a-b056d3d08620 - status: 200 OK - code: 200 - duration: 136.292098ms - - id: 57 + - Fri, 20 Sep 2024 13:02:52 GMT + status: 404 Not Found + code: 404 + duration: 23.499025ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2913,7 +2705,7 @@ interactions: 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/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e method: GET response: proto: HTTP/2.0 @@ -2921,20 +2713,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 1236 uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_queued"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:53.114333232Z","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: - - "466" + - "1236" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:52 GMT + - Fri, 20 Sep 2024 13:02:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2942,48 +2734,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f07dd1c-9fcd-4039-a74c-970d34a81360 + - d33fa131-c665-45e9-88e7-4123085b9952 status: 200 OK code: 200 - duration: 54.708841ms - - id: 58 + duration: 227.698123ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + 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/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d - method: GET + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/revoke + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 1018 uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_queued"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' + body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.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:02:53.775633081Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}' headers: Content-Length: - - "466" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:52 GMT + - Fri, 20 Sep 2024 13:02:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2991,11 +2785,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b911e64e-d43e-44e5-8637-7d0a6214324a + - 1c007aca-f2a8-4e78-9780-90b8755971ee status: 200 OK code: 200 - duration: 56.537939ms - - id: 59 + duration: 640.15361ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -3011,7 +2805,7 @@ interactions: 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?name=webhook-test.scaleway-terraform.com + url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e method: GET response: proto: HTTP/2.0 @@ -3019,20 +2813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1261 + content_length: 1170 uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' + body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.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:02:53.964633298Z","status":"excellent"},"revoked_at":"2024-09-20T13:02:53.775633Z","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: - - "1261" + - "1170" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:53 GMT + - Fri, 20 Sep 2024 13:02:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3040,11 +2834,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6296616-9f32-4785-9d47-5c211afdda72 + - e8b7db34-e7aa-42a0-b99e-e0533e143124 status: 200 OK code: 200 - duration: 219.374117ms - - id: 60 + duration: 305.521365ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3060,7 +2854,7 @@ interactions: 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/d1b6673c-7ad6-4cb6-84a1-a094414c8261 + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=webhook-test-1.scaleway-terraform.com&domain=&order_by=domain_asc method: GET response: proto: HTTP/2.0 @@ -3068,20 +2862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1230 + content_length: 367 uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","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":"webhook-test-1","updated_at":"2024-09-20T13:02:39Z"}],"total_count":1}' headers: Content-Length: - - "1230" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:53 GMT + - Fri, 20 Sep 2024 13:02:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3089,11 +2883,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb1b35b9-cd0e-4f12-a519-b9e641aef0a1 + - e1edd0d5-2e5e-4d8c-aa2d-fcbcf9f411a0 status: 200 OK code: 200 - duration: 65.997216ms - - id: 61 + duration: 64.805656ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3109,28 +2903,28 @@ interactions: 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/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET + url: https://api.scaleway.com/domain/v2beta1/dns-zones/webhook-test-1.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: 259 + content_length: 2 uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' + body: '{}' headers: Content-Length: - - "259" + - "2" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 19 Sep 2024 14:26:53 GMT + - Fri, 20 Sep 2024 13:02:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3138,1115 +2932,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9576f240-47b6-433c-a806-3054aaf85aea + - 18e958ea-f4be-4f00-9216-928065a6be7c status: 200 OK code: 200 - duration: 758.820883ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 227 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "227" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:53 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: - - 18fdb201-5a40-4a1b-9918-ab203ad8052e - status: 200 OK - code: 200 - duration: 91.335076ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 - uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' - headers: - Content-Length: - - "238" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:53 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: - - 99b7427b-6cf2-4e78-a1f4-a380c73a4f00 - status: 200 OK - code: 200 - duration: 56.795306ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 - uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' - headers: - Content-Length: - - "238" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:53 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: - - 0ba8ceb1-0f68-46f5-bac6-7be7a0b99bda - status: 200 OK - code: 200 - duration: 53.23311ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=webhook-test.scaleway-terraform.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1261 - uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' - headers: - Content-Length: - - "1261" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26: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: - - 3b3c3ee4-d739-4009-b41e-9189262ba189 - status: 200 OK - code: 200 - duration: 309.437766ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/d1b6673c-7ad6-4cb6-84a1-a094414c8261 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1230 - uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: - - "1230" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26: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: - - 7f316676-b772-4891-bd4d-3aeac290fa18 - status: 200 OK - code: 200 - duration: 62.822321ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 259 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "259" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26: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: - - 55684f51-11fb-4252-be1e-23e43513759a - status: 200 OK - code: 200 - duration: 652.97175ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 227 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "227" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26: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: - - 2a4fc605-37a9-4d74-8512-c4b9f49b4b95 - status: 200 OK - code: 200 - duration: 96.937865ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 - uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' - headers: - Content-Length: - - "238" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26: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: - - 0fad381e-3a6b-48e5-89d6-e8ba369676f1 - status: 200 OK - code: 200 - duration: 46.630304ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 - uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' - headers: - Content-Length: - - "238" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26: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: - - 003d3b3c-d2f1-4d8d-b952-fbe1c640f6c3 - status: 200 OK - code: 200 - duration: 58.848373ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/af186305-f1d9-4c03-a627-73db87254a4c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 419 - uncompressed: false - body: '{"access_key":"PnC5Z6lNe7prhdP9nQMg","created_at":"2024-09-19T14:26:42.364065Z","id":"af186305-f1d9-4c03-a627-73db87254a4c","name":"tf-sns-credentials-reverent-hodgkin","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"4aad3ecea5bd953a990f5fd3e4b68544b88124e2","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}' - headers: - Content-Length: - - "419" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:55 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: - - 05b5e261-b0be-492b-9b82-1f874d11c204 - status: 200 OK - code: 200 - duration: 67.281538ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 152 - transfer_encoding: [] - trailer: {} - host: sns.mnq.fr-par.scaleway.com - remote_addr: "" - request_uri: "" - body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 - form: - Action: - - GetTopicAttributes - TopicArn: - - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - Version: - - "2010-03-31" - headers: - Content-Length: - - "152" - Content-Type: - - application/x-www-form-urlencoded; charset=utf-8 - User-Agent: - - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) - X-Amz-Date: - - 20240919T142655Z - url: https://sns.mnq.fr-par.scaleway.com/ - method: POST - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 1046 - uncompressed: false - body: | - - - - - Owner - project-105bdce1-64c0-48ab-899d-868455867ecf - - - SubscriptionsConfirmed - 0 - - - SubscriptionsDeleted - 0 - - - SubscriptionsPending - 0 - - - TopicArn - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - - - - - tx72fa6273-7207-4af3-a7cc-56798f14a65b - - - headers: - Content-Length: - - "1046" - Content-Type: - - text/xml; charset=UTF-8 - Date: - - Thu, 19 Sep 2024 14:26:55 GMT - status: 200 OK - code: 200 - duration: 17.475193ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 466 - uncompressed: false - body: '{"created_at":"2024-09-19T14:26:43.097841Z","domain_id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","event_types":["email_queued"],"id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-19T14:26:43.097841Z"}' - headers: - Content-Length: - - "466" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:55 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: - - d90ee918-8ae7-4b80-bcd7-265e88418a63 - status: 200 OK - code: 200 - duration: 67.443086ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=webhook-test.scaleway-terraform.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1261 - uncompressed: false - body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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"}],"total_count":1}' - headers: - Content-Length: - - "1261" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:55 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: - - 11b26077-ac05-4161-9aba-c9a2d1fb2f9d - status: 200 OK - code: 200 - duration: 321.351852ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/d1b6673c-7ad6-4cb6-84a1-a094414c8261 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1230 - uncompressed: false - body: '{"autoconfig":false,"created_at":"2024-09-19T13:52:26.262203Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2SzpRIaV5DL3/3TpwP14mfYCEJte3c6p7e0iJxxHeJ89N6ddGz8PbfvTzXMsqOmTcuUfZ7h/WzNhqtfmmMxWlpkALkfBCP6yoFZYSQT9rOGAc5YoEWJXCOA4OSbPjv+p7VWU8bQENsgofI7gfvuTvJV3mislvZYz7UKIyBYQLwVyPX3L4Obc55O+ugLFpOE4ET7WMIjvLXx5xQYz7o36X52gARWQDfhHF9ZEJFACIEyMjClnmD4aLyJUgcOuCcVAzn3aanpzkKZQZJUuQMJPlLh8BmgKM+DgytznbD+KlTGe6NzEMN9fvEcwqBPdA/3p/HBk1Pl/AA6Cfmqwkm6fAQIDAQAB","id":"d1b6673c-7ad6-4cb6-84a1-a094414c8261","last_error":null,"last_valid_at":"2024-09-19T14:12:26.543478Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T14:50:09.543478Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-19T14:12:39.320530Z","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: - - "1230" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:55 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: - - 941e9924-8f21-40e0-9deb-31c5978922d6 - status: 200 OK - code: 200 - duration: 59.277323ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 259 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "259" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:56 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: - - 8c641494-a50f-4897-b2a5-cad24b13ebae - status: 200 OK - code: 200 - duration: 835.728388ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 227 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "227" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:56 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: - - 52f3f35d-11b2-4f93-93fd-7d1611deecda - status: 200 OK - code: 200 - duration: 105.076025ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 - uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' - headers: - Content-Length: - - "238" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:56 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: - - bcdcc650-1f85-46b9-92db-74a078026e60 - status: 200 OK - code: 200 - duration: 57.725597ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?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: 238 - uncompressed: false - body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}' - headers: - Content-Length: - - "238" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:56 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: - - 7bc31b1f-8a74-4635-9241-1c878d904a79 - status: 200 OK - code: 200 - duration: 56.150246ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d - 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: - - Thu, 19 Sep 2024 14:26:56 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: - - 2d7e1887-efc7-49f7-9a44-674f5faad0ba - status: 204 No Content - code: 204 - duration: 150.297423ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 145 - transfer_encoding: [] - trailer: {} - host: sns.mnq.fr-par.scaleway.com - remote_addr: "" - request_uri: "" - body: Action=DeleteTopic&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31 - form: - Action: - - DeleteTopic - TopicArn: - - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic - Version: - - "2010-03-31" - headers: - Content-Length: - - "145" - Content-Type: - - application/x-www-form-urlencoded; charset=utf-8 - User-Agent: - - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64) - X-Amz-Date: - - 20240919T142656Z - url: https://sns.mnq.fr-par.scaleway.com/ - method: POST - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 211 - uncompressed: false - body: | - - - tx962f64a5-d293-4155-b8b4-8e40606f66eb - - - headers: - Content-Length: - - "211" - Content-Type: - - text/xml; charset=UTF-8 - Date: - - Thu, 19 Sep 2024 14:26:56 GMT - status: 200 OK - code: 200 - duration: 73.220527ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/af186305-f1d9-4c03-a627-73db87254a4c - 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: - - Thu, 19 Sep 2024 14:26:57 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: - - 2eac9d5e-e60e-4cc0-b0f7-f8d67777621d - status: 204 No Content - code: 204 - duration: 82.650446ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/6b4ebb89-6c37-481c-99ea-967c9b26df2d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 131 - uncompressed: false - body: '{"message":"resource is not found","resource":"webhook_id","resource_id":"6b4ebb89-6c37-481c-99ea-967c9b26df2d","type":"not_found"}' - headers: - Content-Length: - - "131" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 19 Sep 2024 14:26:57 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: - - 4c8c3730-dc97-4566-b374-ddce36ebdeb6 - status: 404 Not Found - code: 404 - duration: 23.156856ms + duration: 323.013185ms diff --git a/internal/services/tem/webhook_test.go b/internal/services/tem/webhook_test.go index 5163e1c88..cb2b7584e 100644 --- a/internal/services/tem/webhook_test.go +++ b/internal/services/tem/webhook_test.go @@ -15,16 +15,19 @@ import ( ) const ( - webhookName = "terraform-webhook-test" - organizationID = "105bdce1-64c0-48ab-899d-868455867ecf" - webhookDomainName = "webhook-test.scaleway-terraform.com" + webhookName = "terraform-webhook-test" + updatedWebhookName = "terraform-webhook-updated" + organizationID = "105bdce1-64c0-48ab-899d-868455867ecf" + webhookDomainName = "scaleway-terraform.com" + DomainZone = "webhook-test" ) -func TestAccWebhook_Basic(t *testing.T) { +func TestAccWebhook_BasicAndUpdate(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() - eventTypes := []string{"email_delivered", "email_dropped"} + initialEventTypes := []string{"email_delivered", "email_dropped"} + updatedEventTypes := []string{"email_queued"} resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, @@ -35,11 +38,11 @@ func TestAccWebhook_Basic(t *testing.T) { Config: fmt.Sprintf(` data scaleway_account_project "project" { name = "default" - organization_id = "%s" + organization_id = "%s" } data scaleway_mnq_sns sns { - project_id= data.scaleway_account_project.project.project_id + project_id = data.scaleway_account_project.project.project_id } resource "scaleway_mnq_sns_credentials" "sns_credentials" { @@ -54,20 +57,34 @@ func TestAccWebhook_Basic(t *testing.T) { name = "test-mnq-sns-topic-basic" access_key = scaleway_mnq_sns_credentials.sns_credentials.access_key secret_key = scaleway_mnq_sns_credentials.sns_credentials.secret_key + depends_on = [scaleway_mnq_sns_credentials.sns_credentials] + } + + resource "scaleway_domain_zone" "test" { + domain = "%s" + subdomain = "%s" } - data "scaleway_tem_domain" "cr01" { - name = "%s" + resource "scaleway_tem_domain" "main" { + name = scaleway_domain_zone.test.id + accept_tos = true + autoconfig = true + } + + resource "scaleway_tem_domain_validation" "example" { + domain_id = scaleway_tem_domain.main.id + region = "fr-par" + timeout = 300 } resource "scaleway_tem_webhook" "webhook" { name = "%s" - domain_id = data.scaleway_tem_domain.cr01.id + domain_id = scaleway_tem_domain.main.id event_types = ["%s", "%s"] sns_arn = scaleway_mnq_sns_topic.sns_topic.arn depends_on = [scaleway_mnq_sns_topic.sns_topic] } - `, organizationID, webhookDomainName, webhookName, eventTypes[0], eventTypes[1]), + `, organizationID, webhookDomainName, DomainZone, webhookName, initialEventTypes[0], initialEventTypes[1]), Check: resource.ComposeTestCheckFunc( isWebhookPresent(tt, "scaleway_tem_webhook.webhook"), resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "name", webhookName), @@ -76,33 +93,15 @@ func TestAccWebhook_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "event_types.#", "2"), ), }, - }, - }) -} - -func TestAccWebhook_Update(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - initialName := "terraform-webhook-test" - updatedName := "terraform-webhook-updated" - eventTypes := []string{"email_delivered"} - updatedEventTypes := []string{"email_queued"} - - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isWebhookDestroyed(tt), - Steps: []resource.TestStep{ { Config: fmt.Sprintf(` data scaleway_account_project "project" { name = "default" - organization_id = "%s" + organization_id = "%s" } data scaleway_mnq_sns sns { - project_id= data.scaleway_account_project.project.project_id + project_id = data.scaleway_account_project.project.project_id } resource "scaleway_mnq_sns_credentials" "sns_credentials" { @@ -119,66 +118,34 @@ func TestAccWebhook_Update(t *testing.T) { secret_key = scaleway_mnq_sns_credentials.sns_credentials.secret_key } - data "scaleway_tem_domain" "cr01" { - name = "%s" + resource "scaleway_domain_zone" "test" { + domain = "%s" + subdomain = "%s" } - resource "scaleway_tem_webhook" "webhook" { - name = "%s" - domain_id = data.scaleway_tem_domain.cr01.id - event_types = ["%s"] - sns_arn = scaleway_mnq_sns_topic.sns_topic.arn - depends_on = [scaleway_mnq_sns_topic.sns_topic] - } - `, organizationID, webhookDomainName, initialName, eventTypes[0]), - Check: resource.ComposeTestCheckFunc( - isWebhookPresent(tt, "scaleway_tem_webhook.webhook"), - resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "name", initialName), - resource.TestCheckResourceAttrSet("scaleway_tem_webhook.webhook", "domain_id"), - resource.TestCheckResourceAttrSet("scaleway_tem_webhook.webhook", "sns_arn"), - resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "event_types.#", "1"), - ), - }, - { - Config: fmt.Sprintf(` - data scaleway_account_project "project" { - name = "default" - organization_id = "%s" - } - - data scaleway_mnq_sns sns { - project_id= data.scaleway_account_project.project.project_id - } - - resource "scaleway_mnq_sns_credentials" "sns_credentials" { - project_id = data.scaleway_mnq_sns.sns.project_id - permissions { - can_manage = true - } - } - - resource "scaleway_mnq_sns_topic" "sns_topic" { - project_id = data.scaleway_mnq_sns.sns.project_id - name = "test-mnq-sns-topic-basic" - access_key = scaleway_mnq_sns_credentials.sns_credentials.access_key - secret_key = scaleway_mnq_sns_credentials.sns_credentials.secret_key + resource "scaleway_tem_domain" "main" { + name = scaleway_domain_zone.test.id + accept_tos = true + autoconfig = true } - data "scaleway_tem_domain" "cr01" { - name = "%s" + resource "scaleway_tem_domain_validation" "example" { + domain_id = scaleway_tem_domain.main.id + region = "fr-par" + timeout = 300 } resource "scaleway_tem_webhook" "webhook" { name = "%s" - domain_id = data.scaleway_tem_domain.cr01.id + domain_id = scaleway_tem_domain.main.id event_types = ["%s"] sns_arn = scaleway_mnq_sns_topic.sns_topic.arn depends_on = [scaleway_mnq_sns_topic.sns_topic] } - `, organizationID, webhookDomainName, updatedName, updatedEventTypes[0]), + `, organizationID, webhookDomainName, DomainZone, updatedWebhookName, updatedEventTypes[0]), Check: resource.ComposeTestCheckFunc( isWebhookPresent(tt, "scaleway_tem_webhook.webhook"), - resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "name", updatedName), + resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "name", updatedWebhookName), resource.TestCheckResourceAttrSet("scaleway_tem_webhook.webhook", "domain_id"), resource.TestCheckResourceAttrSet("scaleway_tem_webhook.webhook", "sns_arn"), resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "event_types.#", "1"),