Skip to content

Commit

Permalink
Add WebProxy to readme for Cosmos extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Stechschulte, Adam M committed Jul 24, 2024
1 parent e4ca5dc commit 55662ea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Extensions/Cosmos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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/"
}
```

Expand All @@ -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/"
}
```

Expand Down

0 comments on commit 55662ea

Please sign in to comment.