mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-12 07:01:03 -04:00
* Add aws elastic beanstalk solution stack Signed-off-by: Thomas Schaaf <thomaschaaf@Thomass-MBP.fritz.box> * Fix incorrect naming Signed-off-by: Thomas Schaaf <thomaschaaf@Thomass-MBP.fritz.box> * Use unique go variable/function names Signed-off-by: Thomas Schaaf <thomaschaaf@Thomass-MacBook-Pro.local> * Add docs to sidebar * Sort provider by alphabet * Fix indent * Add required statement * Fix acceptance test
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]]
|
|
}
|