Skip to content

Commit

Permalink
Merge pull request #332 from VinothDarwin-ZC/main
Browse files Browse the repository at this point in the history
Removing the windows related build file from the build directory.
  • Loading branch information
jasper-paul-0621 authored Feb 21, 2025
2 parents 8a038f9 + ddc6a3f commit 7b877e3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 45 deletions.
30 changes: 0 additions & 30 deletions build/build_terraform_provider_site24x7.cmd

This file was deleted.

15 changes: 0 additions & 15 deletions site24x7/integration/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,17 +148,6 @@ var WebhookIntegrationSchema = map[string]*schema.Schema{
Optional: true,
Description: "Configuration to handle ticketing based integration.",
},
"response_format": {
Type: schema.TypeString,
Default: "J",
Optional: true,
Description: "Expected response type for ticketing based integration: J(ason) or X(ml)",
},
"path_expression": {
Type: schema.TypeString,
Optional: true,
Description: "JSON Path/XPath expression to obtain the ticket id of the request created.",
},
"update_url": {
Type: schema.TypeString,
Optional: true,
Expand Down Expand Up @@ -365,8 +354,6 @@ func resourceDataToWebhookIntegration(d *schema.ResourceData) (*api.WebhookInteg
Tags: tagIDs,
AlertTagIDs: alertTagIDs,
ManageTickets: d.Get("manage_tickets").(bool),
ResponseFormat: d.Get("response_format").(string),
PathExpression: d.Get("path_expression").(string),
UpdateURL: d.Get("update_url").(string),
UpdateMethod: d.Get("update_method").(string),
UpdateSendIncidentParameters: d.Get("update_send_incident_parameters").(bool),
Expand Down Expand Up @@ -429,8 +416,6 @@ func updateWebhookIntegrationResourceData(d *schema.ResourceData, webhookIntegra
d.Set("alert_tags_id", webhookIntegration.AlertTagIDs)
// Manage tickets configuration
d.Set("manage_tickets", webhookIntegration.ManageTickets)
d.Set("response_format", webhookIntegration.ResponseFormat)
d.Set("path_expression", webhookIntegration.PathExpression)
// Update Ticket
d.Set("update_url", webhookIntegration.UpdateURL)
d.Set("update_method", webhookIntegration.UpdateMethod)
Expand Down

0 comments on commit 7b877e3

Please sign in to comment.