Skip to content

Commit 9d87e4c

Browse files
Merge pull request #314464 from jlheard/patch-2
Enhance data connector connection rules documentation
2 parents ff1c9dc + 64403c1 commit 9d87e4c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

articles/sentinel/data-connector-connection-rules-reference.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,8 @@ The request section defines how the CCF data connector sends requests to your da
353353
|Field |Required |Type |Description |
354354
| ---- | ---- | ---- | ---- |
355355
| `ApiEndpoint` | True. | String | This field determines the URL for the remote server and defines the endpoint from which to pull data. |
356-
| `RateLimitQPS` | | Integer | This field defines the number of calls or queries allowed in a second. |
356+
| `RateLimitQPS` | | Integer | This field defines the number of calls or queries allowed in a second for the initial request. It does not apply to paginated requests. To throttle pagination, also set `PaginatedCallsPerSecond`. |
357+
| `PaginatedCallsPerSecond` | | Double (0...1000) | This field defines the number of calls per second allowed for paginated requests to the RESTful API. It introduces a delay of `(1000 / paginatedCallsPerSecond)` milliseconds between each paginated API call. This throttling applies only to pagination requests and is separate from `RateLimitQPS`, which controls the initial request rate. Typically, this will be set the same value as `RateLimitQPS` to respect the data source's rate limit across all requests. `0` value means no pagination throttling is applied. |
357358
| `RateLimitConfig` | | Object | This field defines the rate-limit configuration for the RESTful API. For more, go to [`RateLimitConfig` example](#ratelimitconfig-example). |
358359
| `QueryWindowInMin` | | Integer | This field defines the available query window in minutes. The minimum is 1 minute. The default is 5 minutes.|
359360
| `HttpMethod` | | String | This field defines the API method: `GET`(default) or `POST`. |

0 commit comments

Comments
 (0)