You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of our APIs can accept a filter to limit which results from a listing operation get returned. That is generally documented here.
This feature request is to enable this filtering for the v1/connect/intentions endpoint. The HTTP API should already be parsing the filtering parameters and storing them in the QueryOptions field on the DCSpecificRequest struct. So I think the only work here will be:
Modify the Intention.List RPC endpoint to enable filtering and add some tests
Update structs_filtering_test.go with a test for test to assert the filterable fields do not change without us knowing it.
Update the docs for the HTTP endpoint with the list of filterable fields.
The text was updated successfully, but these errors were encountered:
Some of our APIs can accept a filter to limit which results from a listing operation get returned. That is generally documented here.
This feature request is to enable this filtering for the
v1/connect/intentions
endpoint. The HTTP API should already be parsing the filtering parameters and storing them in theQueryOptions
field on theDCSpecificRequest
struct. So I think the only work here will be:Intention.List
RPC endpoint to enable filtering and add some testsstructs_filtering_test.go
with a test for test to assert the filterable fields do not change without us knowing it.The text was updated successfully, but these errors were encountered: