mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-06 22:23:43 -06:00
8a070ddef0
Backends are a mechanism that allow abstracting the behavior of Terraform CLI from the actual core. This allows us to slip in special behavior such as state loading, remote operations, etc.
17 lines
504 B
Go
17 lines
504 B
Go
// Code generated by "stringer -type=OperationType operation_type.go"; DO NOT EDIT
|
|
|
|
package backend
|
|
|
|
import "fmt"
|
|
|
|
const _OperationType_name = "OperationTypeInvalidOperationTypeRefreshOperationTypePlanOperationTypeApply"
|
|
|
|
var _OperationType_index = [...]uint8{0, 20, 40, 57, 75}
|
|
|
|
func (i OperationType) String() string {
|
|
if i >= OperationType(len(_OperationType_index)-1) {
|
|
return fmt.Sprintf("OperationType(%d)", i)
|
|
}
|
|
return _OperationType_name[_OperationType_index[i]:_OperationType_index[i+1]]
|
|
}
|