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
/// Helper: Similar to the `SaveObjects` method but requires a Push connector to be created first,
445
445
/// in order to transform records before indexing them to Algolia.
446
-
/// The ingestion region must have been provided at client instantiation.
446
+
/// <see cref="TransformationOptions"/> must have been set via <see cref="SearchClient.SetTransformationOptions"/> or <see cref="SearchClient.WithTransformation"/>.
447
447
/// </summary>
448
448
/// <param name="indexName">The index in which to perform the request.</param>
449
449
/// <param name="objects">The list of `objects` to store in the given Algolia `indexName`.</param>
/// Helper: Similar to the `PartialUpdateObjects` method but requires a Push connector to be created first,
478
478
/// in order to transform records before indexing them to Algolia.
479
-
/// The ingestion region must have been provided at client instantiation.
479
+
/// <see cref="TransformationOptions"/> must have been set via <see cref="SearchClient.SetTransformationOptions"/> or <see cref="SearchClient.WithTransformation"/>.
480
480
/// </summary>
481
481
/// <param name="indexName">The index in which to perform the request.</param>
482
482
/// <param name="objects">The list of `objects` to update in the given Algolia `indexName`.</param>
/// Helper: Similar to the `ReplaceAllObjects` method but requires a Push connector to be created first,
516
516
/// in order to transform records before indexing them to Algolia.
517
-
/// The ingestion region must have been provided at client instantiation.
517
+
/// <see cref="TransformationOptions"/> must have been set via <see cref="SearchClient.SetTransformationOptions"/> or <see cref="SearchClient.WithTransformation"/>.
518
518
/// A temporary index is created during this process in order to backup your data.
519
519
/// </summary>
520
520
/// <param name="indexName">The index in which to perform the request.</param>
@@ -1386,7 +1386,7 @@ public async Task<
1386
1386
if(_ingestionTransporter==null)
1387
1387
{
1388
1388
thrownewAlgoliaException(
1389
-
"`setTransformationRegion` must have been called before calling this method."
1389
+
"TransformationOptions must be set in the client config before calling this method. It defaults to the Ingestion API defaults. See https://www.algolia.com/doc/libraries/sdk/methods/ingestion"
1390
1390
);
1391
1391
}
1392
1392
@@ -1446,7 +1446,7 @@ public async Task<
1446
1446
if(_ingestionTransporter==null)
1447
1447
{
1448
1448
thrownewAlgoliaException(
1449
-
"`setTransformationRegion` must have been called before calling this method."
1449
+
"TransformationOptions must be set in the client config before calling this method. It defaults to the Ingestion API defaults. See https://www.algolia.com/doc/libraries/sdk/methods/ingestion"
1450
1450
);
1451
1451
}
1452
1452
@@ -1510,7 +1510,7 @@ public async Task<ReplaceAllObjectsWithTransformationResponse> ReplaceAllObjects
1510
1510
if(_ingestionTransporter==null)
1511
1511
{
1512
1512
thrownewAlgoliaException(
1513
-
"`setTransformationRegion` must have been called before calling this method."
1513
+
"TransformationOptions must be set in the client config before calling this method. It defaults to the Ingestion API defaults. See https://www.algolia.com/doc/libraries/sdk/methods/ingestion"
0 commit comments