You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Push a new set of objects and remove all previous ones. Settings, synonyms and query rules are untouched.
231
231
/// Replace all objects in an index without any downtime. Internally, this method copies the existing index settings, synonyms and query rules and indexes all passed objects.
232
232
/// Finally, the temporary one replaces the existing index.
233
-
/// See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
233
+
/// See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
234
234
/// </summary>
235
235
/// <param name="indexName">The index in which to perform the request.</param>
236
236
/// <param name="objects">The list of `objects` to store in the given Algolia `indexName`.</param>
Copy file name to clipboardExpand all lines: clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/extensions/SearchClient.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -432,7 +432,7 @@ public suspend fun SearchClient.partialUpdateObjects(
432
432
* Internally, this method copies the existing index settings, synonyms and query rules and indexes all
433
433
* passed objects. Finally, the temporary one replaces the existing index.
434
434
*
435
-
* See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
435
+
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
436
436
*
437
437
* @param indexName The index in which to perform the request.
ReplaceAllObjectsWithTransformation is 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.
604
-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
604
+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
605
605
606
606
@param indexName string - the index name to replace objects into.
607
607
@param objects []map[string]any - List of objects to replace.
ReplaceAllObjects replaces all objects (records) in the given `indexName` with the given `objects`. A temporary index is created during this process in order to backup your data.
698
-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
698
+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
699
699
700
700
@param indexName string - the index name to replace objects into.
701
701
@param objects []map[string]any - List of objects to replace.
Copy file name to clipboardExpand all lines: templates/javascript/clients/client/api/helpers.mustache
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -391,7 +391,7 @@ async partialUpdateObjects(
391
391
392
392
/**
393
393
* 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.
394
-
* See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
394
+
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
395
395
*
396
396
* @summary 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.
397
397
* @param replaceAllObjects - The `replaceAllObjects` object.
Copy file name to clipboardExpand all lines: templates/javascript/clients/client/api/nodeHelpers.mustache
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ generateSecuredApiKey: ({
37
37
38
38
/**
39
39
* Helper: Copies the given `sourceIndexName` records, rules and synonyms to an other Algolia application for the given `destinationIndexName`.
40
-
* See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
40
+
* See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
41
41
*
42
42
* @summary Helper: Copies the given `sourceIndexName` records, rules and synonyms to an other Algolia application for the given `destinationIndexName`.
43
43
* @param accountCopyIndex - The `accountCopyIndex` object.
Copy file name to clipboardExpand all lines: templates/python/search_helpers.mustache
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -393,7 +393,7 @@
393
393
"""
394
394
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.
395
395
396
-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
396
+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
397
397
"""
398
398
if self._ingestion_transporter is None:
399
399
raise ValueError("`region` must be provided at client instantiation before calling this method.")
@@ -466,7 +466,7 @@
466
466
"""
467
467
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.
468
468
469
-
See https://api-clients-automation.netlify.app/docs/add-new-api-client#5-helpers for implementation details.
469
+
See https://api-clients-automation.netlify.app/docs/custom-helpers/#replaceallobjects for implementation details.
0 commit comments