aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com
diff options
context:
space:
mode:
authorAndrew N Golovkov <andrew@callstats.io>2018-01-17 16:55:18 +0200
committerAndrew N Golovkov <andrew@callstats.io>2018-01-17 16:55:18 +0200
commitc9458806c73b69e6af47eddd83391197b6d2a641 (patch)
treebc6751b5b5307b248cb7fb1f99b129136c230133 /vendor/github.com
parentb01919994f2f0113f00c3afb931cb5a278d7ab0b (diff)
downloadterraform-provider-statuscake-c9458806c73b69e6af47eddd83391197b6d2a641.tar.gz
terraform-provider-statuscake-c9458806c73b69e6af47eddd83391197b6d2a641.tar.zst
terraform-provider-statuscake-c9458806c73b69e6af47eddd83391197b6d2a641.zip
merge changes from https://github.com/DreamItGetIT/statuscake/pull/24 to vendor directory
Diffstat (limited to 'vendor/github.com')
-rw-r--r--vendor/github.com/DreamItGetIT/statuscake/responses.go2
-rw-r--r--vendor/github.com/DreamItGetIT/statuscake/tests.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/DreamItGetIT/statuscake/responses.go b/vendor/github.com/DreamItGetIT/statuscake/responses.go
index 9cdcb11..3cbf36d 100644
--- a/vendor/github.com/DreamItGetIT/statuscake/responses.go
+++ b/vendor/github.com/DreamItGetIT/statuscake/responses.go
@@ -28,7 +28,7 @@ type detailResponse struct {
28 Paused bool `json:"Paused"` 28 Paused bool `json:"Paused"`
29 WebsiteName string `json:"WebsiteName"` 29 WebsiteName string `json:"WebsiteName"`
30 URI string `json:"URI"` 30 URI string `json:"URI"`
31 ContactID string `json:"ContactID"` 31 ContactID int `json:"ContactID"`
32 Status string `json:"Status"` 32 Status string `json:"Status"`
33 Uptime float64 `json:"Uptime"` 33 Uptime float64 `json:"Uptime"`
34 CustomHeader string `json:"CustomHeader"` 34 CustomHeader string `json:"CustomHeader"`
diff --git a/vendor/github.com/DreamItGetIT/statuscake/tests.go b/vendor/github.com/DreamItGetIT/statuscake/tests.go
index 1b37fa1..a41b0bd 100644
--- a/vendor/github.com/DreamItGetIT/statuscake/tests.go
+++ b/vendor/github.com/DreamItGetIT/statuscake/tests.go
@@ -34,7 +34,7 @@ type Test struct {
34 Port int `json:"Port" querystring:"Port"` 34 Port int `json:"Port" querystring:"Port"`
35 35
36 // Contact group ID - will return int of contact group used else 0 36 // Contact group ID - will return int of contact group used else 0
37 ContactID string `json:"ContactID" querystring:"ContactGroup"` 37 ContactID int `json:"ContactID" querystring:"ContactGroup"`
38 38
39 // Current status at last test 39 // Current status at last test
40 Status string `json:"Status"` 40 Status string `json:"Status"`