aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/DreamItGetIT/statuscake/responses.go
diff options
context:
space:
mode:
authorAlexandre Garand <alexandre.garand@fretlink.com>2019-08-09 15:59:15 +0200
committerAlexandre Garand <alexandre.garand@fretlink.com>2019-08-09 16:39:21 +0200
commit863486a6b71ed0e562a3965bed56465d007b1418 (patch)
treee93f6a687695af86d54237ec9f575d4ef104222d /vendor/github.com/DreamItGetIT/statuscake/responses.go
parent49c1c7b4dc69ffb9ab52330e6dc52ccdd6351087 (diff)
downloadterraform-provider-statuscake-863486a6b71ed0e562a3965bed56465d007b1418.tar.gz
terraform-provider-statuscake-863486a6b71ed0e562a3965bed56465d007b1418.tar.zst
terraform-provider-statuscake-863486a6b71ed0e562a3965bed56465d007b1418.zip
update vendor and go.modadd_contact_groups
Diffstat (limited to 'vendor/github.com/DreamItGetIT/statuscake/responses.go')
-rw-r--r--vendor/github.com/DreamItGetIT/statuscake/responses.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/DreamItGetIT/statuscake/responses.go b/vendor/github.com/DreamItGetIT/statuscake/responses.go
index ec74a63..553cb95 100644
--- a/vendor/github.com/DreamItGetIT/statuscake/responses.go
+++ b/vendor/github.com/DreamItGetIT/statuscake/responses.go
@@ -64,6 +64,7 @@ type detailResponse struct {
64 EnableSSLWarning bool `json:"EnableSSLWarning"` 64 EnableSSLWarning bool `json:"EnableSSLWarning"`
65 FollowRedirect bool `json:"FollowRedirect"` 65 FollowRedirect bool `json:"FollowRedirect"`
66 StatusCodes []string `json:"StatusCodes"` 66 StatusCodes []string `json:"StatusCodes"`
67 Tags []string `json:"Tags"`
67} 68}
68 69
69func (d *detailResponse) test() *Test { 70func (d *detailResponse) test() *Test {
@@ -100,5 +101,6 @@ func (d *detailResponse) test() *Test {
100 EnableSSLAlert: d.EnableSSLWarning, 101 EnableSSLAlert: d.EnableSSLWarning,
101 FollowRedirect: d.FollowRedirect, 102 FollowRedirect: d.FollowRedirect,
102 StatusCodes: strings.Join(d.StatusCodes[:], ","), 103 StatusCodes: strings.Join(d.StatusCodes[:], ","),
104 TestTags: d.Tags,
103 } 105 }
104} 106}