Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-co committed Sep 18, 2024
1 parent 16c121c commit c730b2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion com/coralogixapis/alerts/v3/alert_def_list_filter.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ enum FilterField {
}

message ListAlertDefFilter {
google.protobuf.StringValue field = 1; // The field to filter by (e.g., "name", "status")
FilterField field = 1; // The field to filter by (e.g., "name", "status")
FilterMatcher matcher = 2; // The filter operator (e.g., "EQUALS", "NOT_EQUALS", "GREATER_THAN")
repeated google.protobuf.StringValue values = 3; // The value to filter by
FilterValuesOperator values_operator = 4; // The operator to apply to the field (e.g., "AND", "OR")
Expand Down
4 changes: 2 additions & 2 deletions com/coralogixapis/alerts/v3/alert_defs_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ enum OrderByFields {
ORDER_BY_FIELDS_UPDATED_TIME = 4;
}

message OrderBy {
message AlertDefOrderBy {
OrderByFields field_name = 1;
OrderByDirection direction = 2;
}
Expand All @@ -134,7 +134,7 @@ message GetAlertDefResponse {
message ListAlertDefsRequest {
AlertDefListFilters filters = 1;
AlertDefPaginationRequest pagination = 2;
repeated OrderBy order_bys = 3;
repeated AlertDefOrderBy order_bys = 3;
}

message ListAlertDefsResponse {
Expand Down

0 comments on commit c730b2f

Please sign in to comment.