2017-06-05 04:17:35 -05:00
|
|
|
// Code generated by "stringer -type=walkOperation graph_walk_operation.go"; DO NOT EDIT.
|
2015-02-16 21:04:05 -06:00
|
|
|
|
|
|
|
package terraform
|
|
|
|
|
2017-12-11 15:26:29 -06:00
|
|
|
import "strconv"
|
2015-02-16 21:04:05 -06:00
|
|
|
|
2019-05-13 09:32:49 -05:00
|
|
|
func _() {
|
|
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
|
|
// Re-run the stringer command to generate them again.
|
|
|
|
var x [1]struct{}
|
|
|
|
_ = x[walkInvalid-0]
|
|
|
|
_ = x[walkApply-1]
|
|
|
|
_ = x[walkPlan-2]
|
|
|
|
_ = x[walkPlanDestroy-3]
|
2020-09-21 20:53:55 -05:00
|
|
|
_ = x[walkValidate-4]
|
|
|
|
_ = x[walkDestroy-5]
|
|
|
|
_ = x[walkImport-6]
|
|
|
|
_ = x[walkEval-7]
|
2019-05-13 09:32:49 -05:00
|
|
|
}
|
|
|
|
|
2020-09-21 20:53:55 -05:00
|
|
|
const _walkOperation_name = "walkInvalidwalkApplywalkPlanwalkPlanDestroywalkValidatewalkDestroywalkImportwalkEval"
|
2015-02-16 21:04:05 -06:00
|
|
|
|
2020-09-21 20:53:55 -05:00
|
|
|
var _walkOperation_index = [...]uint8{0, 11, 20, 28, 43, 55, 66, 76, 84}
|
2015-02-16 21:04:05 -06:00
|
|
|
|
|
|
|
func (i walkOperation) String() string {
|
2015-07-10 05:56:27 -05:00
|
|
|
if i >= walkOperation(len(_walkOperation_index)-1) {
|
2017-12-11 15:26:29 -06:00
|
|
|
return "walkOperation(" + strconv.FormatInt(int64(i), 10) + ")"
|
2015-02-16 21:04:05 -06:00
|
|
|
}
|
|
|
|
return _walkOperation_name[_walkOperation_index[i]:_walkOperation_index[i+1]]
|
|
|
|
}
|