opentofu/configs/provisionerwhen_string.go
Martin Atkins 13fa73c63e configs: stub out main configuration structs
These types represent the individual elements within configuration, the
modules a configuration is made of, and the configuration (static module
tree) itself.
2018-02-15 15:56:37 -08:00

17 lines
527 B
Go

// Code generated by "stringer -type ProvisionerWhen"; DO NOT EDIT.
package configs
import "strconv"
const _ProvisionerWhen_name = "ProvisionerWhenInvalidProvisionerWhenCreateProvisionerWhenDestroy"
var _ProvisionerWhen_index = [...]uint8{0, 22, 43, 65}
func (i ProvisionerWhen) String() string {
if i < 0 || i >= ProvisionerWhen(len(_ProvisionerWhen_index)-1) {
return "ProvisionerWhen(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _ProvisionerWhen_name[_ProvisionerWhen_index[i]:_ProvisionerWhen_index[i+1]]
}