Skip to content

Commit 107586c

Browse files
algolia-botmillotp
andcommitted
fix(clients): add a default idleConnTimeout (generated)
algolia/api-clients-automation#5442 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent d8f079a commit 107586c

File tree

76 files changed

+645
-611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+645
-611
lines changed

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

Lines changed: 160 additions & 156 deletions
Large diffs are not rendered by default.

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

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -646,8 +646,8 @@ public CompletableFuture<Composition> getCompositionAsync(@Nonnull String compos
646646
}
647647

648648
/**
649-
* Retrieves a rule by its ID. To find the object ID of rules, use the [`search`
650-
* operation](#tag/Rules/operation/searchRules).
649+
* Retrieves a rule by its ID. To find the object ID of a rule, use the [`search`
650+
* operation](https://www.algolia.com/doc/rest-api/composition/search-composition-rules).
651651
*
652652
* @param compositionID Unique Composition ObjectID. (required)
653653
* @param objectID Unique identifier of a rule object. (required)
@@ -661,8 +661,8 @@ public CompositionRule getRule(@Nonnull String compositionID, @Nonnull String ob
661661
}
662662

663663
/**
664-
* Retrieves a rule by its ID. To find the object ID of rules, use the [`search`
665-
* operation](#tag/Rules/operation/searchRules).
664+
* Retrieves a rule by its ID. To find the object ID of a rule, use the [`search`
665+
* operation](https://www.algolia.com/doc/rest-api/composition/search-composition-rules).
666666
*
667667
* @param compositionID Unique Composition ObjectID. (required)
668668
* @param objectID Unique identifier of a rule object. (required)
@@ -673,8 +673,8 @@ public CompositionRule getRule(@Nonnull String compositionID, @Nonnull String ob
673673
}
674674

675675
/**
676-
* (asynchronously) Retrieves a rule by its ID. To find the object ID of rules, use the [`search`
677-
* operation](#tag/Rules/operation/searchRules).
676+
* (asynchronously) Retrieves a rule by its ID. To find the object ID of a rule, use the [`search`
677+
* operation](https://www.algolia.com/doc/rest-api/composition/search-composition-rules).
678678
*
679679
* @param compositionID Unique Composition ObjectID. (required)
680680
* @param objectID Unique identifier of a rule object. (required)
@@ -699,8 +699,8 @@ public CompletableFuture<CompositionRule> getRuleAsync(
699699
}
700700

701701
/**
702-
* (asynchronously) Retrieves a rule by its ID. To find the object ID of rules, use the [`search`
703-
* operation](#tag/Rules/operation/searchRules).
702+
* (asynchronously) Retrieves a rule by its ID. To find the object ID of a rule, use the [`search`
703+
* operation](https://www.algolia.com/doc/rest-api/composition/search-composition-rules).
704704
*
705705
* @param compositionID Unique Composition ObjectID. (required)
706706
* @param objectID Unique identifier of a rule object. (required)
@@ -996,7 +996,8 @@ public CompletableFuture<TaskIDResponse> putCompositionAsync(@Nonnull String com
996996
}
997997

998998
/**
999-
* Upsert a Composition Rule for the specified composition ID.
999+
* If a composition rule with the provided ID already exists, it's replaced. Otherwise, a new one
1000+
* is added.
10001001
*
10011002
* @param compositionID Unique Composition ObjectID. (required)
10021003
* @param objectID Unique identifier of a rule object. (required)
@@ -1015,7 +1016,8 @@ public TaskIDResponse putCompositionRule(
10151016
}
10161017

10171018
/**
1018-
* Upsert a Composition Rule for the specified composition ID.
1019+
* If a composition rule with the provided ID already exists, it's replaced. Otherwise, a new one
1020+
* is added.
10191021
*
10201022
* @param compositionID Unique Composition ObjectID. (required)
10211023
* @param objectID Unique identifier of a rule object. (required)
@@ -1031,7 +1033,8 @@ public TaskIDResponse putCompositionRule(
10311033
}
10321034

10331035
/**
1034-
* (asynchronously) Upsert a Composition Rule for the specified composition ID.
1036+
* (asynchronously) If a composition rule with the provided ID already exists, it's replaced.
1037+
* Otherwise, a new one is added.
10351038
*
10361039
* @param compositionID Unique Composition ObjectID. (required)
10371040
* @param objectID Unique identifier of a rule object. (required)
@@ -1061,7 +1064,8 @@ public CompletableFuture<TaskIDResponse> putCompositionRuleAsync(
10611064
}
10621065

10631066
/**
1064-
* (asynchronously) Upsert a Composition Rule for the specified composition ID.
1067+
* (asynchronously) If a composition rule with the provided ID already exists, it's replaced.
1068+
* Otherwise, a new one is added.
10651069
*
10661070
* @param compositionID Unique Composition ObjectID. (required)
10671071
* @param objectID Unique identifier of a rule object. (required)

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3139,7 +3139,7 @@ public CompletableFuture<ListTransformationsResponse> listTransformationsAsync()
31393139
* providing the `watch` parameter, for asynchronous calls, you can use the observability
31403140
* endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the
31413141
* [pre-indexing data
3142-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3142+
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data),
31433143
* this is the recommended way of ingesting your records. This method is similar to `pushTask`,
31443144
* but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error
31453145
* will be returned.
@@ -3170,7 +3170,7 @@ public WatchResponse push(
31703170
* providing the `watch` parameter, for asynchronous calls, you can use the observability
31713171
* endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the
31723172
* [pre-indexing data
3173-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3173+
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data),
31743174
* this is the recommended way of ingesting your records. This method is similar to `pushTask`,
31753175
* but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error
31763176
* will be returned.
@@ -3194,7 +3194,7 @@ public WatchResponse push(@Nonnull String indexName, @Nonnull PushTaskPayload pu
31943194
* providing the `watch` parameter, for asynchronous calls, you can use the observability
31953195
* endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the
31963196
* [pre-indexing data
3197-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3197+
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data),
31983198
* this is the recommended way of ingesting your records. This method is similar to `pushTask`,
31993199
* but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error
32003200
* will be returned.
@@ -3215,7 +3215,7 @@ public WatchResponse push(@Nonnull String indexName, @Nonnull PushTaskPayload pu
32153215
* providing the `watch` parameter, for asynchronous calls, you can use the observability
32163216
* endpoints and/or debugger dashboard to see the status of your task. If you want to leverage the
32173217
* [pre-indexing data
3218-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3218+
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data),
32193219
* this is the recommended way of ingesting your records. This method is similar to `pushTask`,
32203220
* but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error
32213221
* will be returned.
@@ -3233,7 +3233,7 @@ public WatchResponse push(@Nonnull String indexName, @Nonnull PushTaskPayload pu
32333233
* call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the
32343234
* observability endpoints and/or debugger dashboard to see the status of your task. If you want
32353235
* to leverage the [pre-indexing data
3236-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3236+
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data),
32373237
* this is the recommended way of ingesting your records. This method is similar to `pushTask`,
32383238
* but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error
32393239
* will be returned.
@@ -3283,7 +3283,7 @@ public CompletableFuture<WatchResponse> pushAsync(
32833283
* call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the
32843284
* observability endpoints and/or debugger dashboard to see the status of your task. If you want
32853285
* to leverage the [pre-indexing data
3286-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3286+
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data),
32873287
* this is the recommended way of ingesting your records. This method is similar to `pushTask`,
32883288
* but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error
32893289
* will be returned.
@@ -3311,7 +3311,7 @@ public CompletableFuture<WatchResponse> pushAsync(
33113311
* call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the
33123312
* observability endpoints and/or debugger dashboard to see the status of your task. If you want
33133313
* to leverage the [pre-indexing data
3314-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3314+
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data),
33153315
* this is the recommended way of ingesting your records. This method is similar to `pushTask`,
33163316
* but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error
33173317
* will be returned.
@@ -3335,7 +3335,7 @@ public CompletableFuture<WatchResponse> pushAsync(
33353335
* call synchronous by providing the `watch` parameter, for asynchronous calls, you can use the
33363336
* observability endpoints and/or debugger dashboard to see the status of your task. If you want
33373337
* to leverage the [pre-indexing data
3338-
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/),
3338+
* transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data),
33393339
* this is the recommended way of ingesting your records. This method is similar to `pushTask`,
33403340
* but requires an `indexName` instead of a `taskID`. If zero or many tasks are found, an error
33413341
* will be returned.

0 commit comments

Comments
 (0)