github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/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  )