Skip to content

Commit

Permalink
Add input_query_strings to backend
Browse files Browse the repository at this point in the history
  • Loading branch information
alombarte committed Oct 30, 2023
1 parent 82997c7 commit 3b1a957
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions v2.5/backend.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,23 @@
]
}
},
"input_query_strings": {
"$id": "#backend/input_query_strings",
"title": "Allowed Querystrings In",
"description": "A second level of query string filtering that defines the list of all query strings allowed to reach this backend when different than the endpoint.\nBy default, all query strings in the endpoint `input_query_strings` reach the backend, unless otherwise specified here. An empty list `[]` is considered a zero-value and allows all headers to pass. Use `[\"\"]` to explicitly remove all query strings. See [query strings forwarding](/docs/endpoints/parameter-forwarding//#query-string-forwarding)",
"type": "array",
"uniqueItems": true,
"default": [],
"items": {
"$id": "#backend/input_headers/items",
"type": "string",
"examples": [
"User-Agent",
"Accept",
"*"
]
}
},
"sd": {
"$id": "#backend/sd",
"title": "Service Discovery",
Expand Down

0 comments on commit 3b1a957

Please sign in to comment.