@@ -349,7 +349,7 @@ def query_items_change_feed(
349
349
request. Once the user has reached their provisioned throughput, low priority requests are throttled
350
350
before high priority requests start getting throttled. Feature must first be enabled at the account level.
351
351
:paramtype priority: Optional[Literal["High", "Low"]]
352
- :keyword mode: The change feed mode enum to use when processing change feed items .
352
+ :keyword mode: The modes to query change feed. If `continuation` was passed, 'mode' argument will be ignored .
353
353
LATEST_VERSION: Query latest items from 'start_time' or 'continuation' token.
354
354
ALL_VERSIONS_AND_DELETES: Query all versions and deleted items from either `start_time='Now'`
355
355
or 'continuation' token.
@@ -387,7 +387,7 @@ def query_items_change_feed(
387
387
request. Once the user has reached their provisioned throughput, low priority requests are throttled
388
388
before high priority requests start getting throttled. Feature must first be enabled at the account level.
389
389
:paramtype priority: Optional[Literal["High", "Low"]]
390
- :keyword mode: The change feed mode enum to use when processing change feed items .
390
+ :keyword mode: The modes to query change feed. If `continuation` was passed, 'mode' argument will be ignored .
391
391
LATEST_VERSION: Query latest items from 'start_time' or 'continuation' token.
392
392
ALL_VERSIONS_AND_DELETES: Query all versions and deleted items from either `start_time='Now'`
393
393
or 'continuation' token.
@@ -410,7 +410,7 @@ def query_items_change_feed(
410
410
) -> ItemPaged [Dict [str , Any ]]:
411
411
"""Get a sorted list of items that were changed, in the order in which they were modified.
412
412
413
- :keyword str continuation: The continuation token retrieved from previous response.
413
+ :keyword str continuation: The continuation token retrieved from previous response. It contains chang feed mode.
414
414
:paramtype continuation: str
415
415
:keyword int max_item_count: Max number of items to be returned in the enumeration operation.
416
416
:paramtype max_item_count: Optional[int]
@@ -450,7 +450,7 @@ def query_items_change_feed(
450
450
request. Once the user has reached their provisioned throughput, low priority requests are throttled
451
451
before high priority requests start getting throttled. Feature must first be enabled at the account level.
452
452
:paramtype priority: Optional[Literal["High", "Low"]]
453
- :keyword mode: The change feed mode enum to use when processing change feed items .
453
+ :keyword mode: The modes to query change feed. If `continuation` was passed, 'mode' argument will be ignored .
454
454
LATEST_VERSION: Query latest items from 'start_time' or 'continuation' token.
455
455
ALL_VERSIONS_AND_DELETES: Query all versions and deleted items from either `start_time='Now'`
456
456
or 'continuation' token.
@@ -471,7 +471,7 @@ def query_items_change_feed(
471
471
472
472
"""Get a sorted list of items that were changed, in the order in which they were modified.
473
473
474
- :keyword str continuation: The continuation token retrieved from previous response.
474
+ :keyword str continuation: The continuation token retrieved from previous response. It contains chang feed mode.
475
475
:keyword Dict[str, Any] feed_range: The feed range that is used to define the scope.
476
476
:keyword partition_key: The partition key that is used to define the scope
477
477
(logical partition or a subset of a container)
@@ -486,7 +486,7 @@ def query_items_change_feed(
486
486
:keyword Literal["High", "Low"] priority: Priority based execution allows users to set a priority for each
487
487
request. Once the user has reached their provisioned throughput, low priority requests are throttled
488
488
before high priority requests start getting throttled. Feature must first be enabled at the account level.
489
- :keyword mode: The change feed mode enum to use when processing change feed items .
489
+ :keyword mode: The modes to query change feed. If `continuation` was passed, 'mode' argument will be ignored .
490
490
LATEST_VERSION: Query latest items from 'start_time' or 'continuation' token.
491
491
ALL_VERSIONS_AND_DELETES: Query all versions and deleted items from either `start_time='Now'`
492
492
or 'continuation' token.
0 commit comments