You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/configs/actiontriggerevent_string.go

29 lines
894 B

// Code generated by "stringer -type ActionTriggerEvent"; DO NOT EDIT.
package configs
import "strconv"
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[BeforeCreate-0]
_ = x[AfterCreate-1]
_ = x[BeforeUpdate-2]
_ = x[AfterUpdate-3]
_ = x[BeforeDestroy-4]
_ = x[AfterDestroy-5]
}
const _ActionTriggerEvent_name = "BeforeCreateAfterCreateBeforeUpdateAfterUpdateBeforeDestroyAfterDestroy"
var _ActionTriggerEvent_index = [...]uint8{0, 12, 23, 35, 46, 59, 71}
func (i ActionTriggerEvent) String() string {
if i < 0 || i >= ActionTriggerEvent(len(_ActionTriggerEvent_index)-1) {
return "ActionTriggerEvent(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _ActionTriggerEvent_name[_ActionTriggerEvent_index[i]:_ActionTriggerEvent_index[i+1]]
}