diff --git a/Extensions/Cosmos/README.md b/Extensions/Cosmos/README.md index b3b9de2..dc8b60d 100644 --- a/Extensions/Cosmos/README.md +++ b/Extensions/Cosmos/README.md @@ -14,7 +14,7 @@ Source and sink settings also both require parameters to specify the data locati - `Database` - `Container` -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. +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. ### Source @@ -25,7 +25,8 @@ Source supports an optional `IncludeMetadataFields` parameter (`false` by defaul "Container":"myContainer", "IncludeMetadataFields": false, "PartitionKeyValue":"123", - "Query":"SELECT * FROM c WHERE c.category='event'" + "Query":"SELECT * FROM c WHERE c.category='event'", + "WebProxy":"http://yourproxy.server.com/" } ``` @@ -40,7 +41,8 @@ Or with RBAC: "Container":"myContainer", "IncludeMetadataFields": false, "PartitionKeyValue":"123", - "Query":"SELECT * FROM c WHERE c.category='event'" + "Query":"SELECT * FROM c WHERE c.category='event'", + "WebProxy":"http://yourproxy.server.com/" } ```