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
Copy file name to clipboardExpand all lines: Extensions/Cosmos/README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Source and sink settings also both require parameters to specify the data locati
14
14
-`Database`
15
15
-`Container`
16
16
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.
18
18
19
19
### Source
20
20
@@ -25,7 +25,8 @@ Source supports an optional `IncludeMetadataFields` parameter (`false` by defaul
25
25
"Container":"myContainer",
26
26
"IncludeMetadataFields": false,
27
27
"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/"
29
30
}
30
31
```
31
32
@@ -40,7 +41,8 @@ Or with RBAC:
40
41
"Container":"myContainer",
41
42
"IncludeMetadataFields": false,
42
43
"PartitionKeyValue":"123",
43
-
"Query":"SELECT * FROM c WHERE c.category='event'"
44
+
"Query":"SELECT * FROM c WHERE c.category='event'",
0 commit comments