Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(siren): remove restriction list alert history #43

Merged
merged 1 commit into from
Aug 3, 2023
Merged
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
2 changes: 1 addition & 1 deletion gotocompany/siren/v1beta1/siren.proto
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@

message DeleteSubscriptionResponse {}

message Receiver {

Check failure on line 625 in gotocompany/siren/v1beta1/siren.proto

View workflow job for this annotation

GitHub Actions / validate

Previously present field "9" with name "parent_id" on message "Receiver" was deleted without reserving the number "9".
uint64 id = 1;
string name = 2;
string type = 3;
Expand Down Expand Up @@ -704,7 +704,7 @@
message ListAlertsRequest {
string provider_type = 1;
uint64 provider_id = 2;
string resource_name = 3 [(validate.rules).string.pattern = "^[A-Za-z0-9_-]+$"];
string resource_name = 3;
uint64 start_time = 4;
uint64 end_time = 5;
uint64 namespace_id = 6;
Expand Down
Loading