diff --git a/com/coralogixapis/alerts/v3/alert_defs_service.proto b/com/coralogixapis/alerts/v3/alert_defs_service.proto index f0102e5..d9a006f 100644 --- a/com/coralogixapis/alerts/v3/alert_defs_service.proto +++ b/com/coralogixapis/alerts/v3/alert_defs_service.proto @@ -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 { @@ -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; }