aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/tfdiags/severity_string.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/tfdiags/severity_string.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/tfdiags/severity_string.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/tfdiags/severity_string.go b/vendor/github.com/hashicorp/terraform/tfdiags/severity_string.go
new file mode 100644
index 0000000..0b1249b
--- /dev/null
+++ b/vendor/github.com/hashicorp/terraform/tfdiags/severity_string.go
@@ -0,0 +1,21 @@
1// Code generated by "stringer -type=Severity"; DO NOT EDIT.
2
3package tfdiags
4
5import "strconv"
6
7const (
8 _Severity_name_0 = "Error"
9 _Severity_name_1 = "Warning"
10)
11
12func (i Severity) String() string {
13 switch {
14 case i == 69:
15 return _Severity_name_0
16 case i == 87:
17 return _Severity_name_1
18 default:
19 return "Severity(" + strconv.FormatInt(int64(i), 10) + ")"
20 }
21}