Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-co committed Sep 5, 2024
1 parent d1c09eb commit 93001ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions com/coralogixapis/alerts/v3/alert_defs_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ message GetAlertDefResponse {

message ListAlertDefsRequest {
AlertDefListFilters filters = 1;
PaginationRequest pagination = 2;
AlertDefPaginationRequest pagination = 2;
repeated OrderBy order_bys = 3;
}

message ListAlertDefsResponse {
repeated AlertDef alert_defs = 1;
PaginationResponse pagination = 2;
AlertDefPaginationResponse pagination = 2;
}

message BatchGetAlertDefRequest {
Expand Down Expand Up @@ -204,12 +204,12 @@ message SetActiveRequest{
message SetActiveResponse {
}

message PaginationRequest {
message AlertDefPaginationRequest {
google.protobuf.UInt32Value page_size = 1;
google.protobuf.StringValue page_token = 2;
}

message PaginationResponse {
message AlertDefPaginationResponse {
google.protobuf.UInt32Value total_size = 1;
google.protobuf.StringValue next_page_token = 2;
}

0 comments on commit 93001ac

Please sign in to comment.