Skip to content

Commit

Permalink
Add created_after filter to ListMeasurementsRequest (#215)
Browse files Browse the repository at this point in the history
Needed for checking and filtering previous measurements before prober
measurement creation
  • Loading branch information
roaminggypsy authored Sep 24, 2024
1 parent 724d0f7 commit 32543d9
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,20 +124,30 @@ message ListMeasurementsRequest {
//
// (-- api-linter: core::0140::prepositions=disabled
// api-linter: core::0142::time-field-names=disabled
// aip.dev/not-precedent: Make timestamp filter name consistent --)
// aip.dev/not-precedent: Structured filters are used instead of the
// AIP-160 filtering language --)
google.protobuf.Timestamp updated_after = 4;
// Filter for measurements that are updated before a certain timestamp
//
// (-- api-linter: core::0140::prepositions=disabled
// api-linter: core::0142::time-field-names=disabled
// aip.dev/not-precedent: Make timestamp filter name consistent --)
// aip.dev/not-precedent: Structured filters are used instead of the
// AIP-160 filtering language --)
google.protobuf.Timestamp updated_before = 8;
// Filter for measurements that are created before a certain timestamp
//
// (-- api-linter: core::0140::prepositions=disabled
// api-linter: core::0142::time-field-names=disabled
// aip.dev/not-precedent: Make timestamp filter name consistent --)
// aip.dev/not-precedent: Structured filters are used instead of the
// AIP-160 filtering language --)
google.protobuf.Timestamp created_before = 9;
// Filter for measurements that are created after a certain timestamp
//
// (-- api-linter: core::0140::prepositions=disabled
// api-linter: core::0142::time-field-names=disabled
// aip.dev/not-precedent: Structured filters are used instead of the
// AIP-160 filtering language --)
google.protobuf.Timestamp created_after = 10;
}
// Filter criteria.
//
Expand Down

0 comments on commit 32543d9

Please sign in to comment.