Skip to content

Commit

Permalink
Fixed #602
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinhard-Pilz-Dynatrace committed Nov 28, 2024
1 parent e942a89 commit 2c6dabd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ type PrivateSyntheticLocation struct {
Longitude float64 `json:"longitude"` // The longitude of the location in `DDD.dddd` format
Status *Status `json:"status,omitempty"` // The status of the location: \n\n* `ENABLED`: The location is displayed as active in the UI. You can assign monitors to the location. \n* `DISABLED`: The location is displayed as inactive in the UI. You can't assign monitors to the location. Monitors already assigned to the location will stay there and will be executed from the location. \n* `HIDDEN`: The location is not displayed in the UI. You can't assign monitors to the location. You can only set location as `HIDDEN` when no monitor is assigned to it
Nodes []string `json:"nodes,omitempty"` // A list of synthetic nodes belonging to the location. \n\n You can retrieve the list of available nodes with the [GET all nodes](https://dt-url.net/miy3rpl) call
AvailabilityLocationOutage bool `json:"availabilityLocationOutage,omitempty"` // The alerting of location outage is enabled (`true`) or disabled (`false`)
AvailabilityNodeOutage bool `json:"availabilityNodeOutage,omitempty"` // The alerting of node outage is enabled (`true`) or disabled (`false`). \n\n If enabled, the outage of *any* node in the location triggers an alert
AvailabilityLocationOutage bool `json:"availabilityLocationOutage"` // The alerting of location outage is enabled (`true`) or disabled (`false`)
AvailabilityNodeOutage bool `json:"availabilityNodeOutage"` // The alerting of node outage is enabled (`true`) or disabled (`false`). \n\n If enabled, the outage of *any* node in the location triggers an alert
LocationNodeOutageDelayInMinutes *int `json:"locationNodeOutageDelayInMinutes,omitempty"` // Alert if the location or node outage lasts longer than *X* minutes. \n\n Only applicable when **availabilityLocationOutage** or **availabilityNodeOutage** is set to `true`
AvailabilityNotificationsEnabled bool `json:"availabilityNotificationsEnabled,omitempty"` // The notifications of location and node outage is enabled (`true`) or disabled (`false`)
AvailabilityNotificationsEnabled bool `json:"availabilityNotificationsEnabled"` // The notifications of location and node outage is enabled (`true`) or disabled (`false`)
DeploymentType *DeploymentType `json:"deploymentType,omitempty"` // The deployment type of the location: \n\n* `STANDARD`: The location is deployed on Windows or Linux.\n* `KUBERNETES`: The location is deployed on Kubernetes
AutoUpdateChromium bool `json:"autoUpdateChromium"` // Auto upgrade of Chromium is enabled (`true`) or disabled (`false`)
MinActiveGateCount *int `json:"minActiveGateCount"`
Expand Down

0 comments on commit 2c6dabd

Please sign in to comment.