Skip to content

Commit f829d2c

Browse files
algolia-botmillotpshortcuts
committed
fix(scala): prefix tags with v (generated)
algolia/api-clients-automation#5186 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]> Co-authored-by: shortcuts <[email protected]>
1 parent 3b5e021 commit f829d2c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

algoliasearch/search/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ async def replace_all_objects_with_transformation(
672672
"""
673673
Helper: Similar to the `replaceAllObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must have been passed to the client instantiation method.
674674
675-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
675+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
676676
"""
677677
if self._ingestion_transporter is None:
678678
raise ValueError(
@@ -750,7 +750,7 @@ async def replace_all_objects(
750750
"""
751751
Helper: Replaces all objects (records) in the given `index_name` with the given `objects`. A temporary index is created during this process in order to backup your data.
752752
753-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
753+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
754754
"""
755755
tmp_index_name = self.create_temporary_name(index_name)
756756

@@ -5884,7 +5884,7 @@ def replace_all_objects_with_transformation(
58845884
"""
58855885
Helper: Similar to the `replaceAllObjects` method but requires a Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/) to be created first, in order to transform records before indexing them to Algolia. The `region` must have been passed to the client instantiation method.
58865886
5887-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
5887+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
58885888
"""
58895889
if self._ingestion_transporter is None:
58905890
raise ValueError(
@@ -5962,7 +5962,7 @@ def replace_all_objects(
59625962
"""
59635963
Helper: Replaces all objects (records) in the given `index_name` with the given `objects`. A temporary index is created during this process in order to backup your data.
59645964
5965-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
5965+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
59665966
"""
59675967
tmp_index_name = self.create_temporary_name(index_name)
59685968

0 commit comments

Comments
 (0)