Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 22 additions & 23 deletions proto/kms/api/cmk/eventprocessor/task/v1/task.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions proto/kms/api/cmk/eventprocessor/task/v1/task.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
KEY_ENABLE = 0;
KEY_DISABLE = 1;
KEY_DELETE = 2;
KEY_ROTATE = 3;
SYSTEM_KEY_ROTATE = 3;

Check failure on line 9 in proto/kms/api/cmk/eventprocessor/task/v1/task.proto

View workflow job for this annotation

GitHub Actions / buf

Enum value "3" on enum "TaskType" changed name from "KEY_ROTATE" to "SYSTEM_KEY_ROTATE".

Check failure on line 9 in proto/kms/api/cmk/eventprocessor/task/v1/task.proto

View workflow job for this annotation

GitHub Actions / buf

Enum value "3" on enum "TaskType" changed name from "KEY_ROTATE" to "SYSTEM_KEY_ROTATE".
SYSTEM_LINK = 4;
SYSTEM_UNLINK = 5;
SYSTEM_SWITCH = 6;
Expand All @@ -22,14 +22,14 @@
}
}

// TaskType KEY_ENABLE, KEY_DISABLE, KEY_DELETE, KEY_ROTATE, KEY_DETACH
// TaskType KEY_ENABLE, KEY_DISABLE, KEY_DELETE, KEY_DETACH
message KeyAction {
string key_id = 10;
string tenant_id = 20;
string cmk_region = 30;
}

// TaskType SYSTEM_LINK, SYSTEM_UNLINK, SYSTEM_SWITCH
// TaskType SYSTEM_LINK, SYSTEM_UNLINK, SYSTEM_SWITCH, SYSTEM_KEY_ROTATE
message SystemAction {
string system_id = 10;
string system_region = 12;
Expand Down
Loading