@@ -349,7 +349,7 @@ def query_items_change_feed(
349349 request. Once the user has reached their provisioned throughput, low priority requests are throttled
350350 before high priority requests start getting throttled. Feature must first be enabled at the account level.
351351 :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 .
353353 LATEST_VERSION: Query latest items from 'start_time' or 'continuation' token.
354354 ALL_VERSIONS_AND_DELETES: Query all versions and deleted items from either `start_time='Now'`
355355 or 'continuation' token.
@@ -387,7 +387,7 @@ def query_items_change_feed(
387387 request. Once the user has reached their provisioned throughput, low priority requests are throttled
388388 before high priority requests start getting throttled. Feature must first be enabled at the account level.
389389 :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 .
391391 LATEST_VERSION: Query latest items from 'start_time' or 'continuation' token.
392392 ALL_VERSIONS_AND_DELETES: Query all versions and deleted items from either `start_time='Now'`
393393 or 'continuation' token.
@@ -410,7 +410,7 @@ def query_items_change_feed(
410410 ) -> ItemPaged [Dict [str , Any ]]:
411411 """Get a sorted list of items that were changed, in the order in which they were modified.
412412
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.
414414 :paramtype continuation: str
415415 :keyword int max_item_count: Max number of items to be returned in the enumeration operation.
416416 :paramtype max_item_count: Optional[int]
@@ -450,7 +450,7 @@ def query_items_change_feed(
450450 request. Once the user has reached their provisioned throughput, low priority requests are throttled
451451 before high priority requests start getting throttled. Feature must first be enabled at the account level.
452452 :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 .
454454 LATEST_VERSION: Query latest items from 'start_time' or 'continuation' token.
455455 ALL_VERSIONS_AND_DELETES: Query all versions and deleted items from either `start_time='Now'`
456456 or 'continuation' token.
@@ -471,7 +471,7 @@ def query_items_change_feed(
471471
472472 """Get a sorted list of items that were changed, in the order in which they were modified.
473473
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.
475475 :keyword Dict[str, Any] feed_range: The feed range that is used to define the scope.
476476 :keyword partition_key: The partition key that is used to define the scope
477477 (logical partition or a subset of a container)
@@ -486,7 +486,7 @@ def query_items_change_feed(
486486 :keyword Literal["High", "Low"] priority: Priority based execution allows users to set a priority for each
487487 request. Once the user has reached their provisioned throughput, low priority requests are throttled
488488 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 .
490490 LATEST_VERSION: Query latest items from 'start_time' or 'continuation' token.
491491 ALL_VERSIONS_AND_DELETES: Query all versions and deleted items from either `start_time='Now'`
492492 or 'continuation' token.
0 commit comments