aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/providers/provider.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/hashicorp/terraform/providers/provider.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/hashicorp/terraform/providers/provider.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/providers/provider.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/providers/provider.go b/vendor/github.com/hashicorp/terraform/providers/provider.go
index 1aa08c2..7e0a74c 100644
--- a/vendor/github.com/hashicorp/terraform/providers/provider.go
+++ b/vendor/github.com/hashicorp/terraform/providers/provider.go
@@ -176,6 +176,10 @@ type ReadResourceRequest struct {
176 176
177 // PriorState contains the previously saved state value for this resource. 177 // PriorState contains the previously saved state value for this resource.
178 PriorState cty.Value 178 PriorState cty.Value
179
180 // Private is an opaque blob that will be stored in state along with the
181 // resource. It is intended only for interpretation by the provider itself.
182 Private []byte
179} 183}
180 184
181type ReadResourceResponse struct { 185type ReadResourceResponse struct {
@@ -184,6 +188,10 @@ type ReadResourceResponse struct {
184 188
185 // Diagnostics contains any warnings or errors from the method call. 189 // Diagnostics contains any warnings or errors from the method call.
186 Diagnostics tfdiags.Diagnostics 190 Diagnostics tfdiags.Diagnostics
191
192 // Private is an opaque blob that will be stored in state along with the
193 // resource. It is intended only for interpretation by the provider itself.
194 Private []byte
187} 195}
188 196
189type PlanResourceChangeRequest struct { 197type PlanResourceChangeRequest struct {