diff --git a/internal/services/cockpit/alert_manager.go b/internal/services/cockpit/alert_manager.go index f0b060b90..e81241a03 100644 --- a/internal/services/cockpit/alert_manager.go +++ b/internal/services/cockpit/alert_manager.go @@ -11,7 +11,6 @@ import ( "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" ) @@ -32,11 +31,21 @@ func ResourceCockpitAlertManager() *schema.Resource { Default: true, Description: "Enable or disable the alert manager", }, - "emails": { + + "contact_points": { Type: schema.TypeList, - Elem: &schema.Schema{Type: schema.TypeString, ValidateFunc: verify.IsEmail()}, Optional: true, - Description: "A list of email addresses for the alert receivers", + Description: "A list of contact points", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "email": { + Type: schema.TypeString, + Optional: true, + ValidateFunc: verify.IsEmail(), + Description: "Email addresses for the alert receivers", + }, + }, + }, }, "region": regional.Schema(), "alert_manager_url": { @@ -55,7 +64,7 @@ func ResourceCockpitAlertManagerCreate(ctx context.Context, d *schema.ResourceDa } projectID := d.Get("project_id").(string) - emails := d.Get("emails").([]interface{}) + contactPoints := d.Get("contact_points").([]interface{}) EnableManagedAlerts := d.Get("enable_managed_alerts").(bool) _, err = api.EnableAlertManager(&cockpit.RegionalAPIEnableAlertManagerRequest{ @@ -75,16 +84,23 @@ func ResourceCockpitAlertManagerCreate(ctx context.Context, d *schema.ResourceDa } } - if len(emails) > 0 { - for _, email := range emails { - emailStr, ok := email.(string) + if len(contactPoints) > 0 { + for _, cp := range contactPoints { + cpMap, ok := cp.(map[string]interface{}) + if !ok { + return diag.FromErr(errors.New("invalid contact point format")) + } + + email, ok := cpMap["email"].(string) if !ok { return diag.FromErr(errors.New("invalid email format")) } + emailCP := &cockpit.ContactPointEmail{ - To: emailStr, + To: email, } - _, err := api.CreateContactPoint(&cockpit.RegionalAPICreateContactPointRequest{ + + _, err = api.CreateContactPoint(&cockpit.RegionalAPICreateContactPointRequest{ ProjectID: projectID, Email: emailCP, Region: region, @@ -127,13 +143,16 @@ func ResourceCockpitAlertManagerRead(ctx context.Context, d *schema.ResourceData return diag.FromErr(err) } - var emails []string + var contactPointsList []map[string]interface{} for _, cp := range contactPoints.ContactPoints { if cp.Email != nil { - emails = append(emails, cp.Email.To) + contactPoint := map[string]interface{}{ + "email": cp.Email.To, + } + contactPointsList = append(contactPointsList, contactPoint) } } - _ = d.Set("emails", emails) + _ = d.Set("contact_points", contactPointsList) return nil } @@ -161,13 +180,28 @@ func ResourceCockpitAlertManagerUpdate(ctx context.Context, d *schema.ResourceDa return diag.FromErr(err) } } - if d.HasChange("emails") { - oldEmailsInterface, newEmailsInterface := d.GetChange("emails") - oldEmails := types.ExpandStrings(oldEmailsInterface.([]interface{})) - newEmails := types.ExpandStrings(newEmailsInterface.([]interface{})) + if d.HasChange("contact_points") { - for _, email := range oldEmails { - if !types.SliceContainsString(newEmails, email) { + oldContactPointsInterface, newContactPointsInterface := d.GetChange("contact_points") + oldContactPoints := oldContactPointsInterface.([]interface{}) + newContactPoints := newContactPointsInterface.([]interface{}) + + oldContactMap := make(map[string]map[string]interface{}) + for _, oldCP := range oldContactPoints { + cp := oldCP.(map[string]interface{}) + email := cp["email"].(string) + oldContactMap[email] = cp + } + + newContactMap := make(map[string]map[string]interface{}) + for _, newCP := range newContactPoints { + cp := newCP.(map[string]interface{}) + email := cp["email"].(string) + newContactMap[email] = cp + } + + for email, _ := range oldContactMap { + if _, found := newContactMap[email]; !found { err := api.DeleteContactPoint(&cockpit.RegionalAPIDeleteContactPointRequest{ Region: region, ProjectID: projectID, @@ -179,12 +213,13 @@ func ResourceCockpitAlertManagerUpdate(ctx context.Context, d *schema.ResourceDa } } - for _, email := range newEmails { - if !types.SliceContainsString(oldEmails, email) { - _, err := api.CreateContactPoint(&cockpit.RegionalAPICreateContactPointRequest{ + for email, _ := range newContactMap { + if _, found := oldContactMap[email]; !found { + contactPointEmail := &cockpit.ContactPointEmail{To: email} + _, err = api.CreateContactPoint(&cockpit.RegionalAPICreateContactPointRequest{ Region: region, ProjectID: projectID, - Email: &cockpit.ContactPointEmail{To: email}, + Email: contactPointEmail, }, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) @@ -214,7 +249,7 @@ func ResourceCockpitAlertManagerDelete(ctx context.Context, d *schema.ResourceDa for _, cp := range contactPoints.ContactPoints { if cp.Email != nil { - err := api.DeleteContactPoint(&cockpit.RegionalAPIDeleteContactPointRequest{ + err = api.DeleteContactPoint(&cockpit.RegionalAPIDeleteContactPointRequest{ Region: region, ProjectID: projectID, Email: &cockpit.ContactPointEmail{To: cp.Email.To}, diff --git a/internal/services/cockpit/alert_manager_test.go b/internal/services/cockpit/alert_manager_test.go index df4343b9e..4d982b91e 100644 --- a/internal/services/cockpit/alert_manager_test.go +++ b/internal/services/cockpit/alert_manager_test.go @@ -23,21 +23,25 @@ func TestAccCockpitAlertManager_CreateWithSingleContact(t *testing.T) { CheckDestroy: testAccCockpitAlertManagerAndContactsDestroy(tt), Steps: []resource.TestStep{ { - Config: testAccCockpitAlertManagerConfigWithContacts([]string{"initial@example.com"}), + Config: testAccCockpitAlertManagerConfigWithContacts([]map[string]string{ + {"email": "initial@example.com"}, + }), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "project_id"), resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "enable_managed_alerts", "true"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.0", "initial@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.0.email", "initial@example.com"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "region"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "alert_manager_url"), testAccCheckCockpitContactPointExists(tt, "scaleway_cockpit_alert_manager.alert_manager"), ), }, { - Config: testAccCockpitAlertManagerConfigWithContacts([]string{"updated@example.com"}), + Config: testAccCockpitAlertManagerConfigWithContacts([]map[string]string{ + {"email": "updated@example.com"}, + }), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "enable_managed_alerts", "true"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.0", "updated@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.0.email", "updated@example.com"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "region"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "alert_manager_url"), testAccCheckCockpitContactPointExists(tt, "scaleway_cockpit_alert_manager.alert_manager"), @@ -57,23 +61,29 @@ func TestAccCockpitAlertManager_CreateWithMultipleContacts(t *testing.T) { CheckDestroy: testAccCockpitAlertManagerAndContactsDestroy(tt), Steps: []resource.TestStep{ { - Config: testAccCockpitAlertManagerConfigWithContacts([]string{"initial1@example.com", "initial2@example.com"}), + Config: testAccCockpitAlertManagerConfigWithContacts([]map[string]string{ + {"email": "initial1@example.com"}, + {"email": "initial2@example.com"}, + }), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "project_id"), resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "enable_managed_alerts", "true"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.0", "initial1@example.com"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.1", "initial2@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.0.email", "initial1@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.1.email", "initial2@example.com"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "region"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "alert_manager_url"), testAccCheckCockpitContactPointExists(tt, "scaleway_cockpit_alert_manager.alert_manager"), ), }, { - Config: testAccCockpitAlertManagerConfigWithContacts([]string{"updated1@example.com", "updated2@example.com"}), + Config: testAccCockpitAlertManagerConfigWithContacts([]map[string]string{ + {"email": "updated1@example.com"}, + {"email": "updated2@example.com"}, + }), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "enable_managed_alerts", "true"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.0", "updated1@example.com"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.1", "updated2@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.0.email", "updated1@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.1.email", "updated2@example.com"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "region"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "alert_manager_url"), testAccCheckCockpitContactPointExists(tt, "scaleway_cockpit_alert_manager.alert_manager"), @@ -93,23 +103,29 @@ func TestAccCockpitAlertManager_UpdateSingleContact(t *testing.T) { CheckDestroy: testAccCockpitAlertManagerAndContactsDestroy(tt), Steps: []resource.TestStep{ { - Config: testAccCockpitAlertManagerConfigWithContacts([]string{"notupdated@example.com", "initial1@example.com"}), + Config: testAccCockpitAlertManagerConfigWithContacts([]map[string]string{ + {"email": "notupdated@example.com"}, + {"email": "initial1@example.com"}, + }), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "project_id"), resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "enable_managed_alerts", "true"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.0", "notupdated@example.com"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.1", "initial1@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.0.email", "notupdated@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.1.email", "initial1@example.com"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "region"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "alert_manager_url"), testAccCheckCockpitContactPointExists(tt, "scaleway_cockpit_alert_manager.alert_manager"), ), }, { - Config: testAccCockpitAlertManagerConfigWithContacts([]string{"notupdated@example.com", "updated1@example.com"}), + Config: testAccCockpitAlertManagerConfigWithContacts([]map[string]string{ + {"email": "notupdated@example.com"}, + {"email": "updated1@example.com"}, + }), Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "enable_managed_alerts", "true"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.0", "notupdated@example.com"), - resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "emails.1", "updated1@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.0.email", "notupdated@example.com"), + resource.TestCheckResourceAttr("scaleway_cockpit_alert_manager.alert_manager", "contact_points.1.email", "updated1@example.com"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "region"), resource.TestCheckResourceAttrSet("scaleway_cockpit_alert_manager.alert_manager", "alert_manager_url"), testAccCheckCockpitContactPointExists(tt, "scaleway_cockpit_alert_manager.alert_manager"), @@ -148,15 +164,14 @@ func TestAccCockpitAlertManager_EnableDisable(t *testing.T) { }) } -func testAccCockpitAlertManagerConfigWithContacts(emails []string) string { - emailsConfig := "[" - for _, email := range emails { - emailsConfig += fmt.Sprintf(`"%s", `, email) +func testAccCockpitAlertManagerConfigWithContacts(contactPoints []map[string]string) string { + contactsConfig := "" + for _, contact := range contactPoints { + contactsConfig += fmt.Sprintf(` + contact_points { + email = "%s" + }`, contact["email"]) } - if len(emails) > 0 { - emailsConfig = emailsConfig[:len(emailsConfig)-2] // Remove the last comma and space - } - emailsConfig += "]" return fmt.Sprintf(` resource "scaleway_account_project" "project" { @@ -165,10 +180,10 @@ func testAccCockpitAlertManagerConfigWithContacts(emails []string) string { resource "scaleway_cockpit_alert_manager" "alert_manager" { project_id = scaleway_account_project.project.id - enable_managed_alerts = true - emails = %s + enable_managed_alerts = true + %s } - `, emailsConfig) + `, contactsConfig) } func testAccCockpitAlertManagerEnableConfig(enable bool) string { @@ -224,7 +239,7 @@ func testAccCheckCockpitContactPointExists(tt *acctest.TestTools, resourceName s return err } for _, cp := range contactPoints.ContactPoints { - if cp.Email != nil && cp.Email.To == rs.Primary.Attributes["emails.0"] { + if cp.Email != nil && cp.Email.To == rs.Primary.Attributes["contact_points.0.email"] { return nil } } diff --git a/internal/services/cockpit/testdata/cockpit-alert-manager-create-with-multiple-contacts.cassette.yaml b/internal/services/cockpit/testdata/cockpit-alert-manager-create-with-multiple-contacts.cassette.yaml index 5dd408a8e..47cdb7ae7 100644 --- a/internal/services/cockpit/testdata/cockpit-alert-manager-create-with-multiple-contacts.cassette.yaml +++ b/internal/services/cockpit/testdata/cockpit-alert-manager-create-with-multiple-contacts.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:25.842481Z","description":"","id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:25.842481Z"}' + body: '{"created_at":"2024-05-22T12:42:14.055610Z","description":"","id":"bf545347-0895-4fc9-981b-c044669654eb","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:14.055610Z"}' headers: Content-Length: - "235" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:25 GMT + - Wed, 22 May 2024 12:42:14 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,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 700d9669-20ca-4220-97e0-8135c90720b2 + - c7a95552-556c-4233-8704-501e72524694 status: 200 OK code: 200 - duration: 223.012995ms + duration: 248.177802ms - 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.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/account/v3/projects/bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:25.842481Z","description":"","id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:25.842481Z"}' + body: '{"created_at":"2024-05-22T12:42:14.055610Z","description":"","id":"bf545347-0895-4fc9-981b-c044669654eb","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:14.055610Z"}' headers: Content-Length: - "235" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:26 GMT + - Wed, 22 May 2024 12:42:14 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,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f995eeb6-e12c-4f5e-b20e-a65f43f883e1 + - eec9c287-450d-4d38-92db-92bb7b5e419e status: 200 OK code: 200 - duration: 49.398182ms + duration: 58.577504ms - id: 2 request: proto: HTTP/1.1 @@ -112,7 +112,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288"}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb"}' form: {} headers: Content-Type: @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:26 GMT + - Wed, 22 May 2024 12:42:14 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: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54724d68-26b3-40ce-a969-807048a688d2 + - d1537a14-15b2-4e94-9ee4-9d0e1791987a status: 200 OK code: 200 - duration: 95.364936ms + duration: 94.366738ms - id: 3 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288"}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb"}' form: {} headers: Content-Type: @@ -189,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:26 GMT + - Wed, 22 May 2024 12:42:14 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: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 789138f9-8420-4551-8d46-bd34f1f41b65 + - 2f9a5089-d11e-45f4-b79b-eee0968bfb6d status: 200 OK code: 200 - duration: 54.551515ms + duration: 69.126972ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","email":{"to":"initial1@example.com"}}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb","email":{"to":"initial1@example.com"}}' form: {} headers: Content-Type: @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:26 GMT + - Wed, 22 May 2024 12:42:14 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: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19d602ee-cf38-4f03-9139-f4503a8d48a0 + - ff6eb53f-dc51-43ae-aa2b-21d8d28f34d3 status: 200 OK code: 200 - duration: 473.045545ms + duration: 349.62061ms - id: 5 request: proto: HTTP/1.1 @@ -265,7 +265,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","email":{"to":"initial2@example.com"}}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb","email":{"to":"initial2@example.com"}}' form: {} headers: Content-Type: @@ -291,9 +291,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:27 GMT + - Wed, 22 May 2024 12:42:15 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: @@ -301,10 +301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc247129-6200-43c3-8834-08f53bab0fda + - 9c15e97d-6f92-4b16-a392-671f5599cce7 status: 200 OK code: 200 - duration: 299.501375ms + duration: 255.049823ms - id: 6 request: proto: HTTP/1.1 @@ -321,7 +321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -340,9 +340,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:27 GMT + - Wed, 22 May 2024 12:42:15 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: @@ -350,10 +350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1944201-6f7d-4a2c-96c8-5af3bf3a01eb + - 131f152e-73e1-444c-93fd-31db6468e0e7 status: 200 OK code: 200 - duration: 54.270509ms + duration: 51.473412ms - id: 7 request: proto: HTTP/1.1 @@ -370,7 +370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -389,9 +389,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:27 GMT + - Wed, 22 May 2024 12:42:15 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: @@ -399,10 +399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d542377c-3181-409e-992d-0fa3fe21fb04 + - 26291fba-1618-450f-8454-8e17dd4336d3 status: 200 OK code: 200 - duration: 144.941531ms + duration: 103.394235ms - id: 8 request: proto: HTTP/1.1 @@ -419,7 +419,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -438,9 +438,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:27 GMT + - Wed, 22 May 2024 12:42:15 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: @@ -448,10 +448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90cbe189-17e9-4803-8c9f-16f845b82036 + - 46e4b93d-29b7-4f62-934f-e08c2225bcfa status: 200 OK code: 200 - duration: 129.57423ms + duration: 163.443815ms - id: 9 request: proto: HTTP/1.1 @@ -468,7 +468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/account/v3/projects/bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -478,7 +478,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:25.842481Z","description":"","id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:25.842481Z"}' + body: '{"created_at":"2024-05-22T12:42:14.055610Z","description":"","id":"bf545347-0895-4fc9-981b-c044669654eb","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:14.055610Z"}' headers: Content-Length: - "235" @@ -487,9 +487,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:28 GMT + - Wed, 22 May 2024 12:42:16 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: @@ -497,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 136f5021-9b2c-4393-ae78-04e80c6962d9 + - f8d5ee90-2374-4032-8185-f934da171d61 status: 200 OK code: 200 - duration: 42.043734ms + duration: 41.840674ms - id: 10 request: proto: HTTP/1.1 @@ -517,7 +517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -536,9 +536,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:28 GMT + - Wed, 22 May 2024 12:42:16 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: @@ -546,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d6cc937-9d3f-4e68-b323-fb1202e2b936 + - d3f2385b-d376-425d-9a76-b2b70614f430 status: 200 OK code: 200 - duration: 45.808729ms + duration: 45.747748ms - id: 11 request: proto: HTTP/1.1 @@ -566,7 +566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -585,9 +585,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:28 GMT + - Wed, 22 May 2024 12:42:16 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: @@ -595,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4969c6e9-0dcf-4e91-8af2-f94f7ba1869a + - 1a194ae7-ecdf-49bd-ad5d-33cbd06a4239 status: 200 OK code: 200 - duration: 103.337357ms + duration: 121.904893ms - id: 12 request: proto: HTTP/1.1 @@ -615,7 +615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/account/v3/projects/bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -625,7 +625,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:25.842481Z","description":"","id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:25.842481Z"}' + body: '{"created_at":"2024-05-22T12:42:14.055610Z","description":"","id":"bf545347-0895-4fc9-981b-c044669654eb","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:14.055610Z"}' headers: Content-Length: - "235" @@ -634,9 +634,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:28 GMT + - Wed, 22 May 2024 12:42:16 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: @@ -644,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee161bd6-3e9d-4f58-aea9-4454dba9365e + - 8e3cfe9d-c77f-4c9d-a773-acac574523c5 status: 200 OK code: 200 - duration: 57.94655ms + duration: 54.924232ms - id: 13 request: proto: HTTP/1.1 @@ -664,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -683,9 +683,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:28 GMT + - Wed, 22 May 2024 12:42:16 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: @@ -693,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b7bb92d-745c-4e6f-a25a-7210f12e3b3c + - d04ab708-f68d-4aa2-9166-1a7ff34fd54d status: 200 OK code: 200 - duration: 53.940423ms + duration: 46.670788ms - id: 14 request: proto: HTTP/1.1 @@ -713,7 +713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -732,9 +732,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:28 GMT + - Wed, 22 May 2024 12:42:17 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: @@ -742,10 +742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb971c57-a01c-4518-9ba6-2baad49d82f1 + - f1e5bbaa-260e-42d8-a2c5-ff2f06c62f40 status: 200 OK code: 200 - duration: 98.629747ms + duration: 80.613474ms - id: 15 request: proto: HTTP/1.1 @@ -757,7 +757,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","email":{"to":"initial1@example.com"}}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb","email":{"to":"initial1@example.com"}}' form: {} headers: Content-Type: @@ -781,9 +781,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:29 GMT + - Wed, 22 May 2024 12:42:18 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: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 458803fc-16d1-4692-875f-9bb10743fd24 + - a3b69f0e-ccfe-464b-9542-2b47faf6b33f status: 204 No Content code: 204 - duration: 315.219003ms + duration: 343.584531ms - id: 16 request: proto: HTTP/1.1 @@ -806,7 +806,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","email":{"to":"initial2@example.com"}}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb","email":{"to":"initial2@example.com"}}' form: {} headers: Content-Type: @@ -830,9 +830,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:30 GMT + - Wed, 22 May 2024 12:42:18 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: @@ -840,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f1314ff-58d6-4ac5-a565-628f7ee187a8 + - bf64bc41-8c93-4b51-9ecc-e6a5ef336b0a status: 204 No Content code: 204 - duration: 476.86609ms + duration: 257.618803ms - id: 17 request: proto: HTTP/1.1 @@ -855,7 +855,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","email":{"to":"updated1@example.com"}}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb","email":{"to":"updated1@example.com"}}' form: {} headers: Content-Type: @@ -881,9 +881,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:30 GMT + - Wed, 22 May 2024 12:42:18 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: @@ -891,10 +891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd8ab8fc-bed8-488d-9e94-8ff247fc7536 + - 6f3d71eb-d05b-4a91-aeae-e1318c12de45 status: 200 OK code: 200 - duration: 474.254805ms + duration: 196.185104ms - id: 18 request: proto: HTTP/1.1 @@ -906,7 +906,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","email":{"to":"updated2@example.com"}}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb","email":{"to":"updated2@example.com"}}' form: {} headers: Content-Type: @@ -932,9 +932,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:38 GMT + - Wed, 22 May 2024 12:42:18 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: @@ -942,10 +942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6f9f46c-886e-43c7-a2f6-0f19dc088641 + - fef78589-6916-4170-9ae9-f78a09982a56 status: 200 OK code: 200 - duration: 7.171825855s + duration: 295.04332ms - id: 19 request: proto: HTTP/1.1 @@ -962,7 +962,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -981,9 +981,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:38 GMT + - Wed, 22 May 2024 12:42:18 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: @@ -991,10 +991,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05fc861c-1af5-48f0-a6e5-e477bcab8fb0 + - 1d29efa7-1d30-4a70-8068-aba979bd6215 status: 200 OK code: 200 - duration: 49.502182ms + duration: 55.431828ms - id: 20 request: proto: HTTP/1.1 @@ -1011,7 +1011,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -1030,9 +1030,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:38 GMT + - Wed, 22 May 2024 12:42:18 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: @@ -1040,10 +1040,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db58f72a-0475-422d-aa5a-aadd144cd390 + - decd1597-394b-4cf5-b1b7-00cc0b17e3b5 status: 200 OK code: 200 - duration: 131.969216ms + duration: 101.944361ms - id: 21 request: proto: HTTP/1.1 @@ -1060,7 +1060,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -1079,9 +1079,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:38 GMT + - Wed, 22 May 2024 12:42:19 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: @@ -1089,10 +1089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c9207bd-a62f-4c1e-aeb8-84a298ba1f72 + - 0dd62fda-a30a-4af7-9d24-e4ba95936694 status: 200 OK code: 200 - duration: 135.600921ms + duration: 179.798711ms - id: 22 request: proto: HTTP/1.1 @@ -1109,7 +1109,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/account/v3/projects/bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -1119,7 +1119,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:25.842481Z","description":"","id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:25.842481Z"}' + body: '{"created_at":"2024-05-22T12:42:14.055610Z","description":"","id":"bf545347-0895-4fc9-981b-c044669654eb","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:14.055610Z"}' headers: Content-Length: - "235" @@ -1128,9 +1128,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:39 GMT + - Wed, 22 May 2024 12:42:19 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: @@ -1138,10 +1138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29423415-dc18-4d06-9ddf-fcbc60e1039e + - 5b3de1f1-b4c5-42f1-93fe-a9121a6ff7b6 status: 200 OK code: 200 - duration: 50.077214ms + duration: 41.189011ms - id: 23 request: proto: HTTP/1.1 @@ -1158,7 +1158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -1177,9 +1177,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:39 GMT + - Wed, 22 May 2024 12:42:19 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: @@ -1187,10 +1187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acf46b9a-8279-4667-a1a8-17d35393b57e + - f3c6b074-331b-4600-8de8-328bb11e04e0 status: 200 OK code: 200 - duration: 64.273487ms + duration: 57.068035ms - id: 24 request: proto: HTTP/1.1 @@ -1207,7 +1207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -1226,9 +1226,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:39 GMT + - Wed, 22 May 2024 12:42:20 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: @@ -1236,10 +1236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e775a2e-ddec-4fc0-a425-4ee14084c464 + - 1e05405c-db65-43e2-be15-82653c2b3181 status: 200 OK code: 200 - duration: 87.282205ms + duration: 77.630092ms - id: 25 request: proto: HTTP/1.1 @@ -1256,7 +1256,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -1275,9 +1275,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:40 GMT + - Wed, 22 May 2024 12:42:20 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: @@ -1285,10 +1285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f867bc4-e5e9-4213-aa9e-57b7e1af995d + - c421a95f-749b-4721-82cb-65cb209b1e72 status: 200 OK code: 200 - duration: 107.341908ms + duration: 114.071266ms - id: 26 request: proto: HTTP/1.1 @@ -1300,7 +1300,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","email":{"to":"updated1@example.com"}}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb","email":{"to":"updated1@example.com"}}' form: {} headers: Content-Type: @@ -1324,9 +1324,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:40 GMT + - Wed, 22 May 2024 12:42:21 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: @@ -1334,10 +1334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5df55ac1-4e0f-4b79-b9ec-a5371411c1f9 + - 27bbf7ec-86b3-41b4-b009-d11a70b766a6 status: 204 No Content code: 204 - duration: 609.741555ms + duration: 522.483769ms - id: 27 request: proto: HTTP/1.1 @@ -1349,7 +1349,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288","email":{"to":"updated2@example.com"}}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb","email":{"to":"updated2@example.com"}}' form: {} headers: Content-Type: @@ -1373,9 +1373,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:41 GMT + - Wed, 22 May 2024 12:42:21 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: @@ -1383,10 +1383,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 341013db-7468-460d-82d4-594a3b41f85e + - b9ae9ec9-dfbf-41a5-9e13-5927273dbca6 status: 204 No Content code: 204 - duration: 638.274838ms + duration: 249.62806ms - id: 28 request: proto: HTTP/1.1 @@ -1398,7 +1398,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288"}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb"}' form: {} headers: Content-Type: @@ -1424,9 +1424,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:41 GMT + - Wed, 22 May 2024 12:42:21 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: @@ -1434,10 +1434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a115ce2-f627-4a15-9864-3fe360be35a0 + - 53456821-3d41-4c2d-b5b9-82a161c7006c status: 200 OK code: 200 - duration: 123.888572ms + duration: 49.421699ms - id: 29 request: proto: HTTP/1.1 @@ -1449,7 +1449,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"4200a9bc-4925-4cc1-9b5e-b37e622cc288"}' + body: '{"project_id":"bf545347-0895-4fc9-981b-c044669654eb"}' form: {} headers: Content-Type: @@ -1475,9 +1475,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:42 GMT + - Wed, 22 May 2024 12:42:21 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: @@ -1485,10 +1485,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58187e76-d95d-4b53-86a6-153a44b58edf + - 951c383d-e268-452b-9853-7aa3681c2700 status: 200 OK code: 200 - duration: 702.197151ms + duration: 176.985388ms - id: 30 request: proto: HTTP/1.1 @@ -1505,7 +1505,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/account/v3/projects/bf545347-0895-4fc9-981b-c044669654eb method: DELETE response: proto: HTTP/2.0 @@ -1522,9 +1522,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:43 GMT + - Wed, 22 May 2024 12:42:23 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: @@ -1532,10 +1532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cf25c66-4676-4b4a-a11d-8d9172ab381a + - 5bd062f2-29d0-443e-96a0-51a9995cdcf4 status: 204 No Content code: 204 - duration: 1.147548672s + duration: 1.189821195s - id: 31 request: proto: HTTP/1.1 @@ -1552,7 +1552,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=4200a9bc-4925-4cc1-9b5e-b37e622cc288 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=bf545347-0895-4fc9-981b-c044669654eb method: GET response: proto: HTTP/2.0 @@ -1571,9 +1571,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:43 GMT + - Wed, 22 May 2024 12:42:23 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: @@ -1581,7 +1581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ff8ea3d-f7fc-4876-8896-aa5160f13407 + - 2825a4a2-6e95-4252-aa9e-6b5bfbcf67cb status: 403 Forbidden code: 403 - duration: 56.828056ms + duration: 54.157505ms diff --git a/internal/services/cockpit/testdata/cockpit-alert-manager-create-with-single-contact.cassette.yaml b/internal/services/cockpit/testdata/cockpit-alert-manager-create-with-single-contact.cassette.yaml index 3f49a2ce5..394172991 100644 --- a/internal/services/cockpit/testdata/cockpit-alert-manager-create-with-single-contact.cassette.yaml +++ b/internal/services/cockpit/testdata/cockpit-alert-manager-create-with-single-contact.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:05.530632Z","description":"","id":"50488b54-b51f-4255-8d04-bf035145e027","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:05.530632Z"}' + body: '{"created_at":"2024-05-22T12:40:51.626538Z","description":"","id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:40:51.626538Z"}' headers: Content-Length: - "235" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:05 GMT + - Wed, 22 May 2024 12:40:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d8337db-63fc-4c58-ab4d-2c2c39a31837 + - ae99895f-3e45-4999-b612-02ae07f83ed1 status: 200 OK code: 200 - duration: 262.384487ms + duration: 272.246203ms - 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.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/account/v3/projects/0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:05.530632Z","description":"","id":"50488b54-b51f-4255-8d04-bf035145e027","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:05.530632Z"}' + body: '{"created_at":"2024-05-22T12:40:51.626538Z","description":"","id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:40:51.626538Z"}' headers: Content-Length: - "235" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:05 GMT + - Wed, 22 May 2024 12:40:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c2efc17-10ce-4c84-914b-a33666663407 + - 0d38ef0a-c047-4733-bee6-a0e08a7e952b status: 200 OK code: 200 - duration: 46.991148ms + duration: 49.196723ms - id: 2 request: proto: HTTP/1.1 @@ -112,7 +112,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"50488b54-b51f-4255-8d04-bf035145e027"}' + body: '{"project_id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d"}' form: {} headers: Content-Type: @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:05 GMT + - Wed, 22 May 2024 12:40:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97bd0bd5-1e3f-4f06-919d-b0e9743275aa + - e0deb8dd-b6f3-42a6-9935-0d935c04b5b0 status: 200 OK code: 200 - duration: 170.237849ms + duration: 91.938019ms - id: 3 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"50488b54-b51f-4255-8d04-bf035145e027"}' + body: '{"project_id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d"}' form: {} headers: Content-Type: @@ -189,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:06 GMT + - Wed, 22 May 2024 12:40:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c577aad-3fc8-460f-b347-263396788bbf + - 6e389b7a-2fae-4c6a-a1bd-2dbf0efa1d23 status: 200 OK code: 200 - duration: 59.205952ms + duration: 85.680071ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"50488b54-b51f-4255-8d04-bf035145e027","email":{"to":"initial@example.com"}}' + body: '{"project_id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","email":{"to":"initial@example.com"}}' form: {} headers: Content-Type: @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:06 GMT + - Wed, 22 May 2024 12:40:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 054c3e39-3b51-439d-ad67-14ffe8ef62dd + - 8e53cc03-620c-4352-948b-617aa098327c status: 200 OK code: 200 - duration: 410.228187ms + duration: 549.735551ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -289,9 +289,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:06 GMT + - Wed, 22 May 2024 12:40:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bebda905-a1a1-4cb8-9464-1469ffeafe9f + - f995c199-6ceb-4e2f-8572-f31362c1422f status: 200 OK code: 200 - duration: 50.209956ms + duration: 56.000168ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -338,9 +338,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:06 GMT + - Wed, 22 May 2024 12:40:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdb5a0f0-6226-44ce-9c9b-b9b3ccc8a5e0 + - a98266c1-b952-4c79-b255-3c0838d7cd19 status: 200 OK code: 200 - duration: 178.64982ms + duration: 166.947593ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -387,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:06 GMT + - Wed, 22 May 2024 12:40:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa8f5b58-a22e-4438-9906-cb533bf32b41 + - 25ccf442-349f-484b-91bd-f6a5d103f110 status: 200 OK code: 200 - duration: 137.854882ms + duration: 94.130354ms - id: 8 request: proto: HTTP/1.1 @@ -417,7 +417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/account/v3/projects/0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -427,7 +427,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:05.530632Z","description":"","id":"50488b54-b51f-4255-8d04-bf035145e027","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:05.530632Z"}' + body: '{"created_at":"2024-05-22T12:40:51.626538Z","description":"","id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:40:51.626538Z"}' headers: Content-Length: - "235" @@ -436,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:08 GMT + - Wed, 22 May 2024 12:40:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d06ef105-18d2-4aa1-950d-1b1da025cc78 + - 6c5b722c-575f-4615-af01-6f1af4e19d13 status: 200 OK code: 200 - duration: 636.323202ms + duration: 54.767063ms - id: 9 request: proto: HTTP/1.1 @@ -466,7 +466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -485,9 +485,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:08 GMT + - Wed, 22 May 2024 12:40:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85a98727-3471-4d92-8fa7-390ec8c8c77c + - 4491f05b-d18d-487a-864f-27e8412acf5e status: 200 OK code: 200 - duration: 54.143207ms + duration: 44.887707ms - id: 10 request: proto: HTTP/1.1 @@ -515,7 +515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -534,9 +534,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:08 GMT + - Wed, 22 May 2024 12:40:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 612066b1-f30c-46a6-a8f5-639f7741335d + - 7a010943-a998-4b2f-81c9-b5caf4f00466 status: 200 OK code: 200 - duration: 126.676049ms + duration: 149.60835ms - id: 11 request: proto: HTTP/1.1 @@ -564,7 +564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/account/v3/projects/0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -574,7 +574,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:05.530632Z","description":"","id":"50488b54-b51f-4255-8d04-bf035145e027","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:05.530632Z"}' + body: '{"created_at":"2024-05-22T12:40:51.626538Z","description":"","id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:40:51.626538Z"}' headers: Content-Length: - "235" @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:08 GMT + - Wed, 22 May 2024 12:40:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8c80abc-0b92-4b22-8ec4-ae5bdf1f8f6c + - 45ff78cb-4c19-46dc-a59e-f8fc2fa090d8 status: 200 OK code: 200 - duration: 36.969695ms + duration: 47.778448ms - id: 12 request: proto: HTTP/1.1 @@ -613,7 +613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -632,9 +632,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:08 GMT + - Wed, 22 May 2024 12:40:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20f7e16a-50b0-4037-94f0-4570256738b1 + - 59cae494-ba07-401b-b4f8-9957972d14aa status: 200 OK code: 200 - duration: 56.786147ms + duration: 35.920508ms - id: 13 request: proto: HTTP/1.1 @@ -662,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -681,9 +681,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:09 GMT + - Wed, 22 May 2024 12:40:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a653ca3a-ec10-41fa-8d93-80d52bdace4f + - ed24dff4-ac8c-417a-9b51-6f27165b6263 status: 200 OK code: 200 - duration: 271.219985ms + duration: 101.506309ms - id: 14 request: proto: HTTP/1.1 @@ -706,7 +706,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"50488b54-b51f-4255-8d04-bf035145e027","email":{"to":"initial@example.com"}}' + body: '{"project_id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","email":{"to":"initial@example.com"}}' form: {} headers: Content-Type: @@ -730,9 +730,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:10 GMT + - Wed, 22 May 2024 12:40:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d355370-fd10-45e2-8aed-3d3712c8a7f5 + - e2160e60-dbb3-40cf-a285-e95bf1ef2e1c status: 204 No Content code: 204 - duration: 510.604562ms + duration: 192.794078ms - id: 15 request: proto: HTTP/1.1 @@ -755,7 +755,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"50488b54-b51f-4255-8d04-bf035145e027","email":{"to":"updated@example.com"}}' + body: '{"project_id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","email":{"to":"updated@example.com"}}' form: {} headers: Content-Type: @@ -781,9 +781,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:11 GMT + - Wed, 22 May 2024 12:40:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6343e8d-7f19-462f-ae7c-d9dae4d5bffc + - 28a1165a-900c-494f-94ec-a2941ad73a08 status: 200 OK code: 200 - duration: 861.593684ms + duration: 403.659466ms - id: 16 request: proto: HTTP/1.1 @@ -811,7 +811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -830,9 +830,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:11 GMT + - Wed, 22 May 2024 12:40:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c00a136c-d36c-4a62-9b7f-30573a44a43c + - 243cea81-5d64-4247-a033-6a3c60835463 status: 200 OK code: 200 - duration: 51.851006ms + duration: 54.88508ms - id: 17 request: proto: HTTP/1.1 @@ -860,7 +860,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -879,9 +879,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:11 GMT + - Wed, 22 May 2024 12:40:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4678bda8-38fe-4498-8d12-9432e800d7e4 + - 9fb1bff3-8ea5-4d8f-b11e-cf7c2553b1e9 status: 200 OK code: 200 - duration: 111.494141ms + duration: 101.939693ms - id: 18 request: proto: HTTP/1.1 @@ -909,7 +909,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -928,9 +928,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:11 GMT + - Wed, 22 May 2024 12:40:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 086408c5-fcec-4286-8aea-db0a86088a18 + - 0f4ba24d-ec0c-4f91-926d-b5d10be3ba46 status: 200 OK code: 200 - duration: 131.427774ms + duration: 162.838196ms - id: 19 request: proto: HTTP/1.1 @@ -958,7 +958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/account/v3/projects/0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -968,7 +968,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:05.530632Z","description":"","id":"50488b54-b51f-4255-8d04-bf035145e027","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:05.530632Z"}' + body: '{"created_at":"2024-05-22T12:40:51.626538Z","description":"","id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:40:51.626538Z"}' headers: Content-Length: - "235" @@ -977,9 +977,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:12 GMT + - Wed, 22 May 2024 12:40:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf36d47b-c427-4863-866b-f55b79c40944 + - a044861c-78e4-4509-96d6-71fb91c644ee status: 200 OK code: 200 - duration: 56.168289ms + duration: 53.877364ms - id: 20 request: proto: HTTP/1.1 @@ -1007,7 +1007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -1026,9 +1026,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:12 GMT + - Wed, 22 May 2024 12:40:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53e97a77-1ca1-4447-a405-f6f52d86e114 + - f82cf205-24e3-470c-9388-f29115e34efe status: 200 OK code: 200 - duration: 47.787535ms + duration: 46.663234ms - id: 21 request: proto: HTTP/1.1 @@ -1056,7 +1056,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -1075,9 +1075,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:12 GMT + - Wed, 22 May 2024 12:40:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d7052db-d6ef-4d89-aca0-15abd474b266 + - 6f2a11fc-74c4-474a-899b-e13ab10b3518 status: 200 OK code: 200 - duration: 121.388298ms + duration: 149.342836ms - id: 22 request: proto: HTTP/1.1 @@ -1105,7 +1105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -1124,9 +1124,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:13 GMT + - Wed, 22 May 2024 12:40:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41be0664-bbf1-4f08-83b0-745a85005725 + - 2a670770-ff67-4eb9-be9c-8ac8d771c35c status: 200 OK code: 200 - duration: 89.215007ms + duration: 133.911285ms - id: 23 request: proto: HTTP/1.1 @@ -1149,7 +1149,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"50488b54-b51f-4255-8d04-bf035145e027","email":{"to":"updated@example.com"}}' + body: '{"project_id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d","email":{"to":"updated@example.com"}}' form: {} headers: Content-Type: @@ -1173,9 +1173,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:13 GMT + - Wed, 22 May 2024 12:41:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b20baf1-1db5-4e2a-a27d-d0f13aa94aac + - 4c5fef7b-6bef-4dee-803a-74e9c5d2ece5 status: 204 No Content code: 204 - duration: 448.233861ms + duration: 7.149486853s - id: 24 request: proto: HTTP/1.1 @@ -1198,7 +1198,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"50488b54-b51f-4255-8d04-bf035145e027"}' + body: '{"project_id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d"}' form: {} headers: Content-Type: @@ -1224,9 +1224,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:13 GMT + - Wed, 22 May 2024 12:41:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1234,10 +1234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c27046f-bf8d-4add-80d4-e645b4d2a941 + - 48f09fc2-c3c1-47e9-ad72-f82be60c790e status: 200 OK code: 200 - duration: 69.582992ms + duration: 55.357598ms - id: 25 request: proto: HTTP/1.1 @@ -1249,7 +1249,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"50488b54-b51f-4255-8d04-bf035145e027"}' + body: '{"project_id":"0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d"}' form: {} headers: Content-Type: @@ -1275,9 +1275,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:13 GMT + - Wed, 22 May 2024 12:41:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1285,10 +1285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1d76df9-5704-4d91-81de-eb27111ed9e5 + - c523fc25-bf99-4f30-8606-80c8eebb7b23 status: 200 OK code: 200 - duration: 148.710412ms + duration: 172.987254ms - id: 26 request: proto: HTTP/1.1 @@ -1305,7 +1305,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/account/v3/projects/0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: DELETE response: proto: HTTP/2.0 @@ -1322,9 +1322,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:15 GMT + - Wed, 22 May 2024 12:41:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1332,10 +1332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - def44a78-6264-4c7d-acb9-8a277e4975d8 + - b9d7a992-907a-4092-94a5-f660fac3ebc4 status: 204 No Content code: 204 - duration: 1.180880457s + duration: 1.31203248s - id: 27 request: proto: HTTP/1.1 @@ -1352,7 +1352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=50488b54-b51f-4255-8d04-bf035145e027 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=0fe71b2c-e3ae-46b9-a9d4-e04e7733c23d method: GET response: proto: HTTP/2.0 @@ -1371,9 +1371,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:15 GMT + - Wed, 22 May 2024 12:41:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1381,7 +1381,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f691b22-a544-41ed-898d-5e114a98da3a + - 8bbb062c-7ae5-46af-9b47-a9c966ec36b8 status: 403 Forbidden code: 403 - duration: 38.312951ms + duration: 48.303558ms diff --git a/internal/services/cockpit/testdata/cockpit-alert-manager-enable-disable.cassette.yaml b/internal/services/cockpit/testdata/cockpit-alert-manager-enable-disable.cassette.yaml index acddb8f60..5e3a34051 100644 --- a/internal/services/cockpit/testdata/cockpit-alert-manager-enable-disable.cassette.yaml +++ b/internal/services/cockpit/testdata/cockpit-alert-manager-enable-disable.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:37:32.730281Z","description":"","id":"7cbe142b-4468-4b52-8050-99abdfae7944","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:37:32.730281Z"}' + body: '{"created_at":"2024-05-22T12:42:56.701438Z","description":"","id":"b409249b-233c-471f-9eca-e8489b2ac7d3","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:56.701438Z"}' headers: Content-Length: - "235" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:32 GMT + - Wed, 22 May 2024 12:42:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - 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: - - 15e9fc55-4ed8-4e7f-847e-d5f9e887be54 + - f88bb622-1538-4937-9cbf-c94df2411774 status: 200 OK code: 200 - duration: 374.920815ms + duration: 240.599746ms - 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.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/account/v3/projects/b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:37:32.730281Z","description":"","id":"7cbe142b-4468-4b52-8050-99abdfae7944","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:37:32.730281Z"}' + body: '{"created_at":"2024-05-22T12:42:56.701438Z","description":"","id":"b409249b-233c-471f-9eca-e8489b2ac7d3","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:56.701438Z"}' headers: Content-Length: - "235" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:33 GMT + - Wed, 22 May 2024 12:42:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - 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: - - 4b84e68f-bad8-4e5d-9210-08269db82b95 + - a1836db9-6948-4463-a570-a7c9cd170ff8 status: 200 OK code: 200 - duration: 43.951343ms + duration: 32.592692ms - id: 2 request: proto: HTTP/1.1 @@ -112,7 +112,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"7cbe142b-4468-4b52-8050-99abdfae7944"}' + body: '{"project_id":"b409249b-233c-471f-9eca-e8489b2ac7d3"}' form: {} headers: Content-Type: @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:33 GMT + - Wed, 22 May 2024 12:42:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87cf6d5d-5ee7-4716-b06e-ba20ef202829 + - b07588bc-aabc-42ba-adc3-3e6828036f3f status: 200 OK code: 200 - duration: 162.770431ms + duration: 91.692971ms - id: 3 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"7cbe142b-4468-4b52-8050-99abdfae7944"}' + body: '{"project_id":"b409249b-233c-471f-9eca-e8489b2ac7d3"}' form: {} headers: Content-Type: @@ -189,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:33 GMT + - Wed, 22 May 2024 12:42:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a86769cb-aa57-434d-ad50-15171789de06 + - 57b355fc-6f94-4510-a988-6a818ae038e0 status: 200 OK code: 200 - duration: 62.218875ms + duration: 53.638871ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -238,9 +238,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:33 GMT + - Wed, 22 May 2024 12:42:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e601822-e415-427a-9e7a-4b52fbdbabfd + - 9c438beb-6011-40d4-a791-5e213d094b61 status: 200 OK code: 200 - duration: 49.855326ms + duration: 47.323107ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -287,9 +287,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:33 GMT + - Wed, 22 May 2024 12:42:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93362188-4287-4386-a0e0-47a5bb9c524f + - 11189d88-3070-4a94-96dd-f4d4dafd9215 status: 200 OK code: 200 - duration: 115.81382ms + duration: 120.390369ms - id: 6 request: proto: HTTP/1.1 @@ -317,7 +317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -336,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:33 GMT + - Wed, 22 May 2024 12:42:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7df2b9b0-a207-448f-a618-f58bfb75a897 + - 6108a3d6-cd0d-439d-9162-2d685055b61d status: 200 OK code: 200 - duration: 83.703373ms + duration: 64.157756ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/account/v3/projects/b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -376,7 +376,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:37:32.730281Z","description":"","id":"7cbe142b-4468-4b52-8050-99abdfae7944","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:37:32.730281Z"}' + body: '{"created_at":"2024-05-22T12:42:56.701438Z","description":"","id":"b409249b-233c-471f-9eca-e8489b2ac7d3","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:56.701438Z"}' headers: Content-Length: - "235" @@ -385,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:34 GMT + - Wed, 22 May 2024 12:42:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - 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: - - 2db1cfa7-8f34-4da2-9b0f-fe05900e53c9 + - aa94c888-387f-463d-b5bb-0bb478ca7aa8 status: 200 OK code: 200 - duration: 43.441943ms + duration: 38.901031ms - 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.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:34 GMT + - Wed, 22 May 2024 12:42:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ba99863-e3d4-4585-b29d-caa2c99f5173 + - 500d3aba-a726-4b00-b90e-7c699fa78bab status: 200 OK code: 200 - duration: 49.297514ms + duration: 47.3001ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:34 GMT + - Wed, 22 May 2024 12:42:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 419aa3f5-45e4-43a7-97a3-1df709d47e53 + - 46856ed3-0019-4f4c-8574-17133e3aeb57 status: 200 OK code: 200 - duration: 102.566629ms + duration: 99.823326ms - id: 10 request: proto: HTTP/1.1 @@ -513,7 +513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/account/v3/projects/b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -523,7 +523,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:37:32.730281Z","description":"","id":"7cbe142b-4468-4b52-8050-99abdfae7944","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:37:32.730281Z"}' + body: '{"created_at":"2024-05-22T12:42:56.701438Z","description":"","id":"b409249b-233c-471f-9eca-e8489b2ac7d3","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:56.701438Z"}' headers: Content-Length: - "235" @@ -532,9 +532,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:35 GMT + - Wed, 22 May 2024 12:42:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0c31a52-59fc-4b9f-a374-6647261f72b0 + - 5423b1ed-1caa-4203-8933-3255595d2a71 status: 200 OK code: 200 - duration: 61.421347ms + duration: 42.885046ms - id: 11 request: proto: HTTP/1.1 @@ -562,7 +562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -581,9 +581,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:35 GMT + - Wed, 22 May 2024 12:42:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c7e2b1c-277a-4c24-bb9b-ac405d63a0cb + - 212a002e-e70e-422a-9d7f-7d26ad6714dc status: 200 OK code: 200 - duration: 48.969084ms + duration: 50.078223ms - id: 12 request: proto: HTTP/1.1 @@ -611,7 +611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -630,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:35 GMT + - Wed, 22 May 2024 12:42:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 435b97f2-493f-410d-8388-32da1554feab + - afdfc7f7-92cc-4ab6-ae26-86d9bbd47a98 status: 200 OK code: 200 - duration: 109.049775ms + duration: 82.803505ms - id: 13 request: proto: HTTP/1.1 @@ -655,7 +655,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"7cbe142b-4468-4b52-8050-99abdfae7944"}' + body: '{"project_id":"b409249b-233c-471f-9eca-e8489b2ac7d3"}' form: {} headers: Content-Type: @@ -681,9 +681,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:35 GMT + - Wed, 22 May 2024 12:42:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e93a4d1d-46b5-4f73-b904-e9066c94d217 + - 7720b4bc-8a4e-438c-90a6-788ca36e0c23 status: 200 OK code: 200 - duration: 54.604968ms + duration: 66.011996ms - id: 14 request: proto: HTTP/1.1 @@ -711,7 +711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -730,9 +730,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:36 GMT + - Wed, 22 May 2024 12:42:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e28ff632-0b4d-4d4b-99d5-81b223bb1683 + - 63c0b56c-1a70-462b-8ee5-4057c76324c4 status: 200 OK code: 200 - duration: 52.264088ms + duration: 49.427945ms - id: 15 request: proto: HTTP/1.1 @@ -760,7 +760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -779,9 +779,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:36 GMT + - Wed, 22 May 2024 12:42:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c21903e2-8818-447b-b1db-5b1f7d06e5cd + - 2a06e928-03a5-48db-a2ba-31a6fa51790f status: 200 OK code: 200 - duration: 124.503182ms + duration: 125.494456ms - id: 16 request: proto: HTTP/1.1 @@ -809,7 +809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -828,9 +828,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:36 GMT + - Wed, 22 May 2024 12:43:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b42b308d-d618-4004-9450-ed23e38b69b3 + - 97b3a0e2-5399-4301-816b-f0ba04b4b3a2 status: 200 OK code: 200 - duration: 55.574309ms + duration: 57.035052ms - id: 17 request: proto: HTTP/1.1 @@ -858,7 +858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/account/v3/projects/b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -868,7 +868,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:37:32.730281Z","description":"","id":"7cbe142b-4468-4b52-8050-99abdfae7944","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:37:32.730281Z"}' + body: '{"created_at":"2024-05-22T12:42:56.701438Z","description":"","id":"b409249b-233c-471f-9eca-e8489b2ac7d3","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:56.701438Z"}' headers: Content-Length: - "235" @@ -877,9 +877,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:36 GMT + - Wed, 22 May 2024 12:43:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a278699-7713-4299-982e-872cc261e1be + - eb2a93c2-2704-4a82-b79a-b973b723b312 status: 200 OK code: 200 - duration: 37.862775ms + duration: 40.430492ms - id: 18 request: proto: HTTP/1.1 @@ -907,7 +907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -926,9 +926,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:36 GMT + - Wed, 22 May 2024 12:43:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d40733f0-9300-4e2a-b91b-be176764dfc3 + - 64a69e8f-0491-4de0-b8cf-82701d669709 status: 200 OK code: 200 - duration: 45.585708ms + duration: 39.385519ms - id: 19 request: proto: HTTP/1.1 @@ -956,7 +956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -975,9 +975,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:37 GMT + - Wed, 22 May 2024 12:43:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,10 +985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42691486-b625-47f0-bce5-835964a2198c + - bb5decd6-c213-4a0a-9844-ec8343b7b2c9 status: 200 OK code: 200 - duration: 143.70815ms + duration: 79.195034ms - id: 20 request: proto: HTTP/1.1 @@ -1005,7 +1005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -1024,9 +1024,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:38 GMT + - Wed, 22 May 2024 12:43:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09b1031a-3270-41c2-9378-1b00eddabad7 + - d292b483-6550-46a1-a73e-af59c3a91f14 status: 200 OK code: 200 - duration: 162.985424ms + duration: 110.75728ms - id: 21 request: proto: HTTP/1.1 @@ -1049,7 +1049,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"7cbe142b-4468-4b52-8050-99abdfae7944"}' + body: '{"project_id":"b409249b-233c-471f-9eca-e8489b2ac7d3"}' form: {} headers: Content-Type: @@ -1075,9 +1075,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:38 GMT + - Wed, 22 May 2024 12:43:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf1fc110-73b5-428d-9006-94c8ee306c09 + - b030ce7e-8efc-44f9-8b23-91de0004117a status: 200 OK code: 200 - duration: 59.682719ms + duration: 55.039145ms - id: 22 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"7cbe142b-4468-4b52-8050-99abdfae7944"}' + body: '{"project_id":"b409249b-233c-471f-9eca-e8489b2ac7d3"}' form: {} headers: Content-Type: @@ -1126,9 +1126,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:38 GMT + - Wed, 22 May 2024 12:43:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1136,10 +1136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8faa19fb-c7f5-4e15-a270-952d6df25714 + - de076723-caf7-4d33-852c-62cbb534adcc status: 200 OK code: 200 - duration: 153.44601ms + duration: 119.268293ms - id: 23 request: proto: HTTP/1.1 @@ -1156,7 +1156,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/account/v3/projects/b409249b-233c-471f-9eca-e8489b2ac7d3 method: DELETE response: proto: HTTP/2.0 @@ -1173,9 +1173,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:39 GMT + - Wed, 22 May 2024 12:43:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38c91067-7a7f-493e-bc67-4cca743137e9 + - 7b125eab-edb1-4108-ada2-f30921db2218 status: 204 No Content code: 204 - duration: 1.223965523s + duration: 1.207594709s - id: 24 request: proto: HTTP/1.1 @@ -1203,7 +1203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=7cbe142b-4468-4b52-8050-99abdfae7944 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=b409249b-233c-471f-9eca-e8489b2ac7d3 method: GET response: proto: HTTP/2.0 @@ -1222,9 +1222,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:39 GMT + - Wed, 22 May 2024 12:43:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,7 +1232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e42c20a2-beec-4600-9c62-38b532d49d67 + - bae734bd-6eaf-45ad-99f9-5a59997eba10 status: 403 Forbidden code: 403 - duration: 44.253043ms + duration: 43.551462ms diff --git a/internal/services/cockpit/testdata/cockpit-alert-manager-update-single-contact.cassette.yaml b/internal/services/cockpit/testdata/cockpit-alert-manager-update-single-contact.cassette.yaml index bd8d67320..1a3ec7e49 100644 --- a/internal/services/cockpit/testdata/cockpit-alert-manager-update-single-contact.cassette.yaml +++ b/internal/services/cockpit/testdata/cockpit-alert-manager-update-single-contact.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:54.597816Z","description":"","id":"12512516-f219-4618-ac45-39a96aeb7e84","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:54.597816Z"}' + body: '{"created_at":"2024-05-22T12:42:34.282594Z","description":"","id":"719e7356-2929-485e-837b-934b92ff547b","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:34.282594Z"}' headers: Content-Length: - "235" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:54 GMT + - Wed, 22 May 2024 12:42:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9410f0c2-1aac-43d9-9c74-db9ade5504f1 + - 602d438b-ba70-4b00-9395-5ab71283fbe9 status: 200 OK code: 200 - duration: 210.373141ms + duration: 240.062767ms - 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.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/account/v3/projects/719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:54.597816Z","description":"","id":"12512516-f219-4618-ac45-39a96aeb7e84","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:54.597816Z"}' + body: '{"created_at":"2024-05-22T12:42:34.282594Z","description":"","id":"719e7356-2929-485e-837b-934b92ff547b","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:34.282594Z"}' headers: Content-Length: - "235" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:54 GMT + - Wed, 22 May 2024 12:42:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dbd6f5a-ef49-498b-8f8a-3b4efa995d97 + - 63dd17b2-732e-4a35-8eb9-7deb4c1e9191 status: 200 OK code: 200 - duration: 48.90243ms + duration: 43.54418ms - id: 2 request: proto: HTTP/1.1 @@ -112,7 +112,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84"}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b"}' form: {} headers: Content-Type: @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:55 GMT + - Wed, 22 May 2024 12:42:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f2908f3-94ae-48a9-9ed3-165dedf23da0 + - 39bf3465-eb77-494b-85bb-77c6ca6f7738 status: 200 OK code: 200 - duration: 178.452933ms + duration: 107.158774ms - id: 3 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84"}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b"}' form: {} headers: Content-Type: @@ -189,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:55 GMT + - Wed, 22 May 2024 12:42:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dfbc503-894f-4769-9633-2d9f37c63540 + - 060e8564-c7c2-484f-b3e6-d1dfae93e857 status: 200 OK code: 200 - duration: 49.637422ms + duration: 65.589698ms - id: 4 request: proto: HTTP/1.1 @@ -214,7 +214,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84","email":{"to":"notupdated@example.com"}}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b","email":{"to":"notupdated@example.com"}}' form: {} headers: Content-Type: @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:58 GMT + - Wed, 22 May 2024 12:42:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0312ca66-4231-4aef-b599-2f0fd9de7903 + - fb136d4f-9c90-48d0-a28b-c7bd38c2faed status: 200 OK code: 200 - duration: 3.899478347s + duration: 523.909412ms - id: 5 request: proto: HTTP/1.1 @@ -265,7 +265,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84","email":{"to":"initial1@example.com"}}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b","email":{"to":"initial1@example.com"}}' form: {} headers: Content-Type: @@ -291,9 +291,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:59 GMT + - Wed, 22 May 2024 12:42:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -301,10 +301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70f1b490-f37e-4cf2-8566-4e5172ebe3a1 + - f6611e43-2c07-4cad-a720-3d266b25ad25 status: 200 OK code: 200 - duration: 276.439771ms + duration: 398.09631ms - id: 6 request: proto: HTTP/1.1 @@ -321,7 +321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -340,9 +340,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:59 GMT + - Wed, 22 May 2024 12:42:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -350,10 +350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6511038e-33d2-4ff6-9c7c-e923674be721 + - 22244f0c-8b6f-4d9a-85bc-d25ccc238b31 status: 200 OK code: 200 - duration: 50.026934ms + duration: 48.392523ms - id: 7 request: proto: HTTP/1.1 @@ -370,7 +370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -389,9 +389,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:59 GMT + - Wed, 22 May 2024 12:42:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -399,10 +399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9154084b-5b3a-4fba-b1ee-f9e4404acb2e + - 276edd8a-3166-4076-944a-8c066347ae7a status: 200 OK code: 200 - duration: 123.004726ms + duration: 77.52606ms - id: 8 request: proto: HTTP/1.1 @@ -419,7 +419,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -438,9 +438,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:36:59 GMT + - Wed, 22 May 2024 12:42:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -448,10 +448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c6367e8-d577-4ea2-9efb-89fb36c718e6 + - a4b2e109-126f-454c-ac9b-1afe7cab8517 status: 200 OK code: 200 - duration: 109.658755ms + duration: 104.774926ms - id: 9 request: proto: HTTP/1.1 @@ -468,7 +468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/account/v3/projects/719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -478,7 +478,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:54.597816Z","description":"","id":"12512516-f219-4618-ac45-39a96aeb7e84","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:54.597816Z"}' + body: '{"created_at":"2024-05-22T12:42:34.282594Z","description":"","id":"719e7356-2929-485e-837b-934b92ff547b","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:34.282594Z"}' headers: Content-Length: - "235" @@ -487,9 +487,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:00 GMT + - Wed, 22 May 2024 12:42:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -497,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c2badad-3786-463b-8982-8903731f6135 + - 0eef9243-8b79-454d-aa28-29670ff169d5 status: 200 OK code: 200 - duration: 64.474721ms + duration: 46.051182ms - id: 10 request: proto: HTTP/1.1 @@ -517,7 +517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -536,9 +536,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:00 GMT + - Wed, 22 May 2024 12:42:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -546,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8293b28-9e04-4aca-9aa7-84aba38ad0ef + - 242b41cd-2e3d-40f7-b788-f2b37f176b92 status: 200 OK code: 200 - duration: 45.187548ms + duration: 47.218657ms - id: 11 request: proto: HTTP/1.1 @@ -566,7 +566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -585,9 +585,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:00 GMT + - Wed, 22 May 2024 12:42:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -595,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a49b7878-17b0-42b2-939b-a856b7f6a01e + - 2f234c9d-97c2-4a09-a23c-eaa1b76e4f1f status: 200 OK code: 200 - duration: 99.359458ms + duration: 103.932675ms - id: 12 request: proto: HTTP/1.1 @@ -615,7 +615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/account/v3/projects/719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -625,7 +625,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:54.597816Z","description":"","id":"12512516-f219-4618-ac45-39a96aeb7e84","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:54.597816Z"}' + body: '{"created_at":"2024-05-22T12:42:34.282594Z","description":"","id":"719e7356-2929-485e-837b-934b92ff547b","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:34.282594Z"}' headers: Content-Length: - "235" @@ -634,9 +634,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:01 GMT + - Wed, 22 May 2024 12:42:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -644,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b712b62-d79a-49c3-8725-753d51ec3c7b + - 7e5080ca-9add-4e41-b0ba-c823f677e18b status: 200 OK code: 200 - duration: 51.494027ms + duration: 52.650654ms - id: 13 request: proto: HTTP/1.1 @@ -664,7 +664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -683,9 +683,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:01 GMT + - Wed, 22 May 2024 12:42:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 118ed44c-facd-43a6-80e1-72c9ac6c3858 + - 3ae7e02a-bb65-4e36-bfd2-f568b9021375 status: 200 OK code: 200 - duration: 55.657667ms + duration: 46.010952ms - id: 14 request: proto: HTTP/1.1 @@ -713,7 +713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -732,9 +732,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:01 GMT + - Wed, 22 May 2024 12:42:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -742,10 +742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d519814b-c9b3-4962-af93-c6fa944ef457 + - 890b965e-e8a6-44d6-9b04-0bc4f2cd708d status: 200 OK code: 200 - duration: 99.561964ms + duration: 69.951681ms - id: 15 request: proto: HTTP/1.1 @@ -757,7 +757,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84","email":{"to":"initial1@example.com"}}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b","email":{"to":"initial1@example.com"}}' form: {} headers: Content-Type: @@ -781,9 +781,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:02 GMT + - Wed, 22 May 2024 12:42:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba20d8b7-e4ff-42f6-bfb6-4bb507fef462 + - 9e72769f-e3b4-4242-8179-f90f0d0801a0 status: 204 No Content code: 204 - duration: 292.955434ms + duration: 242.698397ms - id: 16 request: proto: HTTP/1.1 @@ -806,7 +806,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84","email":{"to":"updated1@example.com"}}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b","email":{"to":"updated1@example.com"}}' form: {} headers: Content-Type: @@ -832,9 +832,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:02 GMT + - Wed, 22 May 2024 12:42:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -842,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc33ec29-9622-4570-9f66-adf64bdbd855 + - 270c85d3-adce-4cc7-a584-3ee96be85f1f status: 200 OK code: 200 - duration: 1.336649107s + duration: 2.799652083s - id: 17 request: proto: HTTP/1.1 @@ -862,7 +862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -881,9 +881,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:03 GMT + - Wed, 22 May 2024 12:42:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -891,10 +891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ad021ba-d5e1-468c-a90f-90172db0e6a6 + - 0a4701b9-a711-4261-8b2b-e42498797d0b status: 200 OK code: 200 - duration: 63.203095ms + duration: 49.657002ms - id: 18 request: proto: HTTP/1.1 @@ -911,7 +911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -930,9 +930,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:03 GMT + - Wed, 22 May 2024 12:42:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -940,10 +940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7501bb1b-a507-4f9f-b973-f047d8abb78b + - 21190ae6-dabd-4474-8d8f-a4ca643a52fc status: 200 OK code: 200 - duration: 124.924325ms + duration: 810.059377ms - id: 19 request: proto: HTTP/1.1 @@ -960,7 +960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -979,9 +979,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:04 GMT + - Wed, 22 May 2024 12:42:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -989,10 +989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d40d10c4-9c4f-4b2d-a413-09866474ada9 + - 8835a0c5-9378-4417-9ac8-4713f54a82d8 status: 200 OK code: 200 - duration: 108.641938ms + duration: 107.427205ms - id: 20 request: proto: HTTP/1.1 @@ -1009,7 +1009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/account/v3/projects/719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -1019,7 +1019,7 @@ interactions: trailer: {} content_length: 235 uncompressed: false - body: '{"created_at":"2024-05-16T09:36:54.597816Z","description":"","id":"12512516-f219-4618-ac45-39a96aeb7e84","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-16T09:36:54.597816Z"}' + body: '{"created_at":"2024-05-22T12:42:34.282594Z","description":"","id":"719e7356-2929-485e-837b-934b92ff547b","name":"tf_test_project","organization_id":"46fd79d8-1a35-4548-bfb8-03df51a0ebae","updated_at":"2024-05-22T12:42:34.282594Z"}' headers: Content-Length: - "235" @@ -1028,9 +1028,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:04 GMT + - Wed, 22 May 2024 12:42:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1038,10 +1038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfe51098-63c6-4b3d-8474-6b4ce539211e + - 6c6ea3ce-efe0-4e29-8edd-90372afeeac0 status: 200 OK code: 200 - duration: 64.452384ms + duration: 35.06513ms - id: 21 request: proto: HTTP/1.1 @@ -1058,7 +1058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -1077,9 +1077,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:04 GMT + - Wed, 22 May 2024 12:42:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1087,10 +1087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2fee7af-8416-46af-bf94-137224ef4d31 + - 2e5069d2-17d1-4d19-a642-adf11432f88a status: 200 OK code: 200 - duration: 46.388093ms + duration: 44.501327ms - id: 22 request: proto: HTTP/1.1 @@ -1107,7 +1107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -1126,9 +1126,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:04 GMT + - Wed, 22 May 2024 12:42:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1136,10 +1136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffcb0af9-321f-4e37-8729-c81bb9e4551a + - d8bf1d64-f60d-45e3-87cb-2e4204c89ad8 status: 200 OK code: 200 - duration: 172.275082ms + duration: 118.175699ms - id: 23 request: proto: HTTP/1.1 @@ -1156,7 +1156,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager/contact-points?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -1175,9 +1175,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:05 GMT + - Wed, 22 May 2024 12:42:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1185,10 +1185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4050784e-8383-4d54-8ac4-110b049dba85 + - 7708881d-a54d-4413-be68-549d0e17b020 status: 200 OK code: 200 - duration: 99.974642ms + duration: 101.867184ms - id: 24 request: proto: HTTP/1.1 @@ -1200,7 +1200,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84","email":{"to":"notupdated@example.com"}}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b","email":{"to":"notupdated@example.com"}}' form: {} headers: Content-Type: @@ -1224,9 +1224,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:06 GMT + - Wed, 22 May 2024 12:42:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1234,10 +1234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a223ec7-06b4-4de9-b9c2-7bcd4de5d0f2 + - 479464cc-1458-4620-861c-f6b10960320e status: 204 No Content code: 204 - duration: 521.529939ms + duration: 336.7361ms - id: 25 request: proto: HTTP/1.1 @@ -1249,7 +1249,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84","email":{"to":"updated1@example.com"}}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b","email":{"to":"updated1@example.com"}}' form: {} headers: Content-Type: @@ -1273,9 +1273,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:06 GMT + - Wed, 22 May 2024 12:42:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1283,10 +1283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13b2f432-261c-427f-bb1a-35ea6bfa9136 + - 306981df-8b22-49ec-86a8-345db7200467 status: 204 No Content code: 204 - duration: 327.4405ms + duration: 239.37662ms - id: 26 request: proto: HTTP/1.1 @@ -1298,7 +1298,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84"}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b"}' form: {} headers: Content-Type: @@ -1324,9 +1324,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:06 GMT + - Wed, 22 May 2024 12:42:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1334,10 +1334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa58eead-e283-46bd-adc4-c0333da78b5b + - eb3abc0a-e613-4a99-8d19-f40898fdad27 status: 200 OK code: 200 - duration: 60.707284ms + duration: 74.586188ms - id: 27 request: proto: HTTP/1.1 @@ -1349,7 +1349,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"12512516-f219-4618-ac45-39a96aeb7e84"}' + body: '{"project_id":"719e7356-2929-485e-837b-934b92ff547b"}' form: {} headers: Content-Type: @@ -1375,9 +1375,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:06 GMT + - Wed, 22 May 2024 12:42:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1385,10 +1385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 678905b7-c5ef-4e81-9da0-b29d35a8f896 + - 627d0821-4561-4f42-98c6-45dd7e176066 status: 200 OK code: 200 - duration: 120.128205ms + duration: 167.975958ms - id: 28 request: proto: HTTP/1.1 @@ -1405,7 +1405,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/account/v3/projects/719e7356-2929-485e-837b-934b92ff547b method: DELETE response: proto: HTTP/2.0 @@ -1422,9 +1422,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:07 GMT + - Wed, 22 May 2024 12:42:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1432,10 +1432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34935c5f-1b8b-440a-ad3c-054db1cb8ac6 + - 7718e3e5-2cff-44ac-8e9b-798b9a69fd55 status: 204 No Content code: 204 - duration: 1.212700793s + duration: 1.137323198s - id: 29 request: proto: HTTP/1.1 @@ -1452,7 +1452,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=12512516-f219-4618-ac45-39a96aeb7e84 + url: https://api.scaleway.com/cockpit/v1/regions/fr-par/alert-manager?project_id=719e7356-2929-485e-837b-934b92ff547b method: GET response: proto: HTTP/2.0 @@ -1471,9 +1471,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 May 2024 09:37:08 GMT + - Wed, 22 May 2024 12:42:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1481,7 +1481,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adbc52af-c3c3-48b5-9a47-3ad28e0110f6 + - 7f65e41d-9482-448d-982e-0ba52e1a09c6 status: 403 Forbidden code: 403 - duration: 39.475549ms + duration: 45.353813ms