github.com/lorbuschris/terraform@v0.11.12-beta1/backend/operation_type.go (about)

     1  package backend
     2  
     3  //go:generate 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  )