Skip to content

Commit 55662ea

Browse files
author
Stechschulte, Adam M
committed
Add WebProxy to readme for Cosmos extension
1 parent e4ca5dc commit 55662ea

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Extensions/Cosmos/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Source and sink settings also both require parameters to specify the data locati
1414
- `Database`
1515
- `Container`
1616

17-
Source supports an optional `IncludeMetadataFields` parameter (`false` by default) to enable inclusion of built-in Cosmos fields prefixed with `"_"`, for example `"_etag"` and `"_ts"`. An optional PartitionKeyValue setting allows for filtering to a single partition. The optional Query setting allows further filtering using a Cosmos SQL statement.
17+
Source supports an optional `IncludeMetadataFields` parameter (`false` by default) to enable inclusion of built-in Cosmos fields prefixed with `"_"`, for example `"_etag"` and `"_ts"`. An optional PartitionKeyValue setting allows for filtering to a single partition. The optional Query setting allows further filtering using a Cosmos SQL statement. An optional `WebProxy` parameter (`null` by default) enables connections through a proxy.
1818

1919
### Source
2020

@@ -25,7 +25,8 @@ Source supports an optional `IncludeMetadataFields` parameter (`false` by defaul
2525
"Container":"myContainer",
2626
"IncludeMetadataFields": false,
2727
"PartitionKeyValue":"123",
28-
"Query":"SELECT * FROM c WHERE c.category='event'"
28+
"Query":"SELECT * FROM c WHERE c.category='event'",
29+
"WebProxy":"http://yourproxy.server.com/"
2930
}
3031
```
3132

@@ -40,7 +41,8 @@ Or with RBAC:
4041
"Container":"myContainer",
4142
"IncludeMetadataFields": false,
4243
"PartitionKeyValue":"123",
43-
"Query":"SELECT * FROM c WHERE c.category='event'"
44+
"Query":"SELECT * FROM c WHERE c.category='event'",
45+
"WebProxy":"http://yourproxy.server.com/"
4446
}
4547
```
4648

0 commit comments

Comments
 (0)