terraform-provider-gitea/vendor/github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema/valuetype.go

25 lines
650 B
Go
Raw Normal View History

2022-04-03 04:07:16 +00:00
package schema
// This code was previously generated with a go:generate directive calling:
// go run golang.org/x/tools/cmd/stringer -type=ValueType valuetype.go
// However, it is now considered frozen and the tooling dependency has been
// removed. The String method can be manually updated if necessary.
2022-04-03 04:07:16 +00:00
// ValueType is an enum of the type that can be represented by a schema.
type ValueType int
const (
TypeInvalid ValueType = iota
TypeBool
TypeInt
TypeFloat
TypeString
TypeList
TypeMap
TypeSet
typeObject
)
// NOTE: ValueType has more functions defined on it in schema.go. We can't
// put them here because we reference other files.