github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-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  )