From 799b49d7c81dff1a92ff03c1955d1d389026b0c6 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Tue, 25 Sep 2018 16:55:21 -0700 Subject: [PATCH] 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. --- plans/action_string.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plans/action_string.go b/plans/action_string.go index ed620be77d..c79465a2ae 100644 --- a/plans/action_string.go +++ b/plans/action_string.go @@ -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) + ")" }