github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/backend/operation_type.go (about) 1 package backend 2 3 //go:generate go run golang.org/x/tools/cmd/stringer -type=OperationType operation_type.go 4 5 // OperationType is an enum used with Operation to specify the operation 6 // type to perform for Terraform. 7 type OperationType uint 8 9 const ( 10 OperationTypeInvalid OperationType = iota 11 OperationTypeRefresh 12 OperationTypePlan 13 OperationTypeApply 14 )