github.com/trawler/terraform@v0.10.8-0.20171106022149-4b1c7a1d9b48/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 )