Skip to content

Commit 00f771e

Browse files
algolia-botkai687
andcommitted
fix(specs): normalize spelling of summaries (generated)
algolia/api-clients-automation#5340 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Kai Welke <[email protected]>
1 parent 80aa7dd commit 00f771e

File tree

1 file changed

+40
-56
lines changed

1 file changed

+40
-56
lines changed

algoliasearch/src/main/java/com/algolia/api/IngestionClient.java

Lines changed: 40 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -3333,14 +3333,12 @@ public CompletableFuture<WatchResponse> pushAsync(@Nonnull String indexName, @No
33333333
}
33343334

33353335
/**
3336-
* Pushes records through the Pipeline, directly to an index. You can make the call synchronous by
3336+
* Pushes records through the pipeline, directly to an index. You can make the call synchronous by
33373337
* providing the `watch` parameter, for asynchronous calls, you can use the observability
3338-
* endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the
3339-
* [pre-indexing data
3340-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3341-
* this is the recommended way of ingesting your records. This method is similar to `push`, but
3342-
* requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target
3343-
* the same `indexName`.
3338+
* endpoints or the debugger dashboard to see the status of your task. If you want to transform
3339+
* your data before indexing, this is the recommended way of ingesting your records. This method
3340+
* is similar to `push`, but requires a `taskID` instead of a `indexName`, which is useful when
3341+
* many `destinations` target the same `indexName`.
33443342
*
33453343
* @param taskID Unique identifier of a task. (required)
33463344
* @param pushTaskPayload (required)
@@ -3360,14 +3358,12 @@ public WatchResponse pushTask(
33603358
}
33613359

33623360
/**
3363-
* Pushes records through the Pipeline, directly to an index. You can make the call synchronous by
3361+
* Pushes records through the pipeline, directly to an index. You can make the call synchronous by
33643362
* providing the `watch` parameter, for asynchronous calls, you can use the observability
3365-
* endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the
3366-
* [pre-indexing data
3367-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3368-
* this is the recommended way of ingesting your records. This method is similar to `push`, but
3369-
* requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target
3370-
* the same `indexName`.
3363+
* endpoints or the debugger dashboard to see the status of your task. If you want to transform
3364+
* your data before indexing, this is the recommended way of ingesting your records. This method
3365+
* is similar to `push`, but requires a `taskID` instead of a `indexName`, which is useful when
3366+
* many `destinations` target the same `indexName`.
33713367
*
33723368
* @param taskID Unique identifier of a task. (required)
33733369
* @param pushTaskPayload (required)
@@ -3381,14 +3377,12 @@ public WatchResponse pushTask(@Nonnull String taskID, @Nonnull PushTaskPayload p
33813377
}
33823378

33833379
/**
3384-
* Pushes records through the Pipeline, directly to an index. You can make the call synchronous by
3380+
* Pushes records through the pipeline, directly to an index. You can make the call synchronous by
33853381
* providing the `watch` parameter, for asynchronous calls, you can use the observability
3386-
* endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the
3387-
* [pre-indexing data
3388-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3389-
* this is the recommended way of ingesting your records. This method is similar to `push`, but
3390-
* requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target
3391-
* the same `indexName`.
3382+
* endpoints or the debugger dashboard to see the status of your task. If you want to transform
3383+
* your data before indexing, this is the recommended way of ingesting your records. This method
3384+
* is similar to `push`, but requires a `taskID` instead of a `indexName`, which is useful when
3385+
* many `destinations` target the same `indexName`.
33923386
*
33933387
* @param taskID Unique identifier of a task. (required)
33943388
* @param pushTaskPayload (required)
@@ -3402,14 +3396,12 @@ public WatchResponse pushTask(@Nonnull String taskID, @Nonnull PushTaskPayload p
34023396
}
34033397

34043398
/**
3405-
* Pushes records through the Pipeline, directly to an index. You can make the call synchronous by
3399+
* Pushes records through the pipeline, directly to an index. You can make the call synchronous by
34063400
* providing the `watch` parameter, for asynchronous calls, you can use the observability
3407-
* endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the
3408-
* [pre-indexing data
3409-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3410-
* this is the recommended way of ingesting your records. This method is similar to `push`, but
3411-
* requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target
3412-
* the same `indexName`.
3401+
* endpoints or the debugger dashboard to see the status of your task. If you want to transform
3402+
* your data before indexing, this is the recommended way of ingesting your records. This method
3403+
* is similar to `push`, but requires a `taskID` instead of a `indexName`, which is useful when
3404+
* many `destinations` target the same `indexName`.
34133405
*
34143406
* @param taskID Unique identifier of a task. (required)
34153407
* @param pushTaskPayload (required)
@@ -3420,14 +3412,12 @@ public WatchResponse pushTask(@Nonnull String taskID, @Nonnull PushTaskPayload p
34203412
}
34213413

34223414
/**
3423-
* (asynchronously) Pushes records through the Pipeline, directly to an index. You can make the
3415+
* (asynchronously) Pushes records through the pipeline, directly to an index. You can make the
34243416
* call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the
3425-
* observability endpoints and/or debugger dashboard to see the status of your task. If you want
3426-
* to leverage the [pre-indexing data
3427-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3428-
* this is the recommended way of ingesting your records. This method is similar to `push`, but
3429-
* requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target
3430-
* the same `indexName`.
3417+
* observability endpoints or the debugger dashboard to see the status of your task. If you want
3418+
* to transform your data before indexing, this is the recommended way of ingesting your records.
3419+
* This method is similar to `push`, but requires a `taskID` instead of a `indexName`, which is
3420+
* useful when many `destinations` target the same `indexName`.
34313421
*
34323422
* @param taskID Unique identifier of a task. (required)
34333423
* @param pushTaskPayload (required)
@@ -3465,14 +3455,12 @@ public CompletableFuture<WatchResponse> pushTaskAsync(
34653455
}
34663456

34673457
/**
3468-
* (asynchronously) Pushes records through the Pipeline, directly to an index. You can make the
3458+
* (asynchronously) Pushes records through the pipeline, directly to an index. You can make the
34693459
* call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the
3470-
* observability endpoints and/or debugger dashboard to see the status of your task. If you want
3471-
* to leverage the [pre-indexing data
3472-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3473-
* this is the recommended way of ingesting your records. This method is similar to `push`, but
3474-
* requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target
3475-
* the same `indexName`.
3460+
* observability endpoints or the debugger dashboard to see the status of your task. If you want
3461+
* to transform your data before indexing, this is the recommended way of ingesting your records.
3462+
* This method is similar to `push`, but requires a `taskID` instead of a `indexName`, which is
3463+
* useful when many `destinations` target the same `indexName`.
34763464
*
34773465
* @param taskID Unique identifier of a task. (required)
34783466
* @param pushTaskPayload (required)
@@ -3486,14 +3474,12 @@ public CompletableFuture<WatchResponse> pushTaskAsync(@Nonnull String taskID, @N
34863474
}
34873475

34883476
/**
3489-
* (asynchronously) Pushes records through the Pipeline, directly to an index. You can make the
3477+
* (asynchronously) Pushes records through the pipeline, directly to an index. You can make the
34903478
* call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the
3491-
* observability endpoints and/or debugger dashboard to see the status of your task. If you want
3492-
* to leverage the [pre-indexing data
3493-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3494-
* this is the recommended way of ingesting your records. This method is similar to `push`, but
3495-
* requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target
3496-
* the same `indexName`.
3479+
* observability endpoints or the debugger dashboard to see the status of your task. If you want
3480+
* to transform your data before indexing, this is the recommended way of ingesting your records.
3481+
* This method is similar to `push`, but requires a `taskID` instead of a `indexName`, which is
3482+
* useful when many `destinations` target the same `indexName`.
34973483
*
34983484
* @param taskID Unique identifier of a task. (required)
34993485
* @param pushTaskPayload (required)
@@ -3510,14 +3496,12 @@ public CompletableFuture<WatchResponse> pushTaskAsync(
35103496
}
35113497

35123498
/**
3513-
* (asynchronously) Pushes records through the Pipeline, directly to an index. You can make the
3499+
* (asynchronously) Pushes records through the pipeline, directly to an index. You can make the
35143500
* call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the
3515-
* observability endpoints and/or debugger dashboard to see the status of your task. If you want
3516-
* to leverage the [pre-indexing data
3517-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3518-
* this is the recommended way of ingesting your records. This method is similar to `push`, but
3519-
* requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target
3520-
* the same `indexName`.
3501+
* observability endpoints or the debugger dashboard to see the status of your task. If you want
3502+
* to transform your data before indexing, this is the recommended way of ingesting your records.
3503+
* This method is similar to `push`, but requires a `taskID` instead of a `indexName`, which is
3504+
* useful when many `destinations` target the same `indexName`.
35213505
*
35223506
* @param taskID Unique identifier of a task. (required)
35233507
* @param pushTaskPayload (required)

0 commit comments

Comments
 (0)