plans: Regenerate Action.String for new action values
This was missed on the initial update of these because at the time the package wasn't generate-able due to other problems.
This commit is contained in:
parent
ca6efc6ba9
commit
3e9d23b120
|
@ -9,8 +9,9 @@ const (
|
|||
_Action_name_1 = "Create"
|
||||
_Action_name_2 = "Delete"
|
||||
_Action_name_3 = "Update"
|
||||
_Action_name_4 = "Replace"
|
||||
_Action_name_4 = "CreateThenDelete"
|
||||
_Action_name_5 = "Read"
|
||||
_Action_name_6 = "DeleteThenCreate"
|
||||
)
|
||||
|
||||
func (i Action) String() string {
|
||||
|
@ -27,6 +28,8 @@ func (i Action) String() string {
|
|||
return _Action_name_4
|
||||
case i == 8592:
|
||||
return _Action_name_5
|
||||
case i == 8723:
|
||||
return _Action_name_6
|
||||
default:
|
||||
return "Action(" + strconv.FormatInt(int64(i), 10) + ")"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue