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): add relation labels list subscriptions #114

Merged
merged 1 commit into from
Jul 9, 2024
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
5 changes: 4 additions & 1 deletion gotocompany/siren/v1beta1/siren.proto
Original file line number Diff line number Diff line change
Expand Up @@ -640,9 +640,11 @@

message DeleteNamespaceResponse {}

message ReceiverMetadata {

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

View workflow job for this annotation

GitHub Actions / validate

Previously present field "4" with name "configuration" on message "ReceiverMetadata" was deleted without reserving the number "4".

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

View workflow job for this annotation

GitHub Actions / validate

Previously present field "4" with name "configuration" on message "ReceiverMetadata" was deleted without reserving the number "4".
uint64 id = 1;
google.protobuf.Struct configuration = 4;
google.protobuf.Struct configuration = 2;
map<string, string> subscription_receiver_labels = 3;

}

message Subscription {
Expand Down Expand Up @@ -674,6 +676,7 @@
map<string, string> subscription_receiver_labels = 7 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "query result based on subscription_receiver_labels matchers. the subscription_receiver_labels key is written as map. eg, \" subscription_receiver_labels[key1]=value1\""
}];
bool with_subscription_receiver = 8;
}

message ListSubscriptionsResponse {
Expand Down
Loading