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/states/objectstatus_string.go

22 lines
409 B

// Code generated by "stringer -type ObjectStatus"; DO NOT EDIT.
package states
import "strconv"
const (
_ObjectStatus_name_0 = "ObjectReady"
_ObjectStatus_name_1 = "ObjectTainted"
)
func (i ObjectStatus) String() string {
switch {
case i == 82:
return _ObjectStatus_name_0
case i == 84:
return _ObjectStatus_name_1
default:
return "ObjectStatus(" + strconv.FormatInt(int64(i), 10) + ")"
}
}