You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraformDummyRepo2/vendor/github.com/hashicorp/terraform-plugin-sdk/terraform/graph_walk_operation.go

19 lines
439 B
Go

package terraform
//go:generate go run golang.org/x/tools/cmd/stringer -type=walkOperation graph_walk_operation.go
// walkOperation is an enum which tells the walkContext what to do.
type walkOperation byte
const (
walkInvalid walkOperation = iota
walkApply
walkPlan
walkPlanDestroy
walkRefresh
walkValidate
walkDestroy
walkImport
walkEval // used just to prepare EvalContext for expression evaluation, with no other actions
)