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
/// Adds, updates, or deletes records in one index with a single API request. Batching index updates reduces latency and increases data integrity. - Actions are applied in the order they're specified. - Actions are equivalent to the individual API requests of the same name. This operation is subject to [indexing rate limits](https://support.algolia.com/hc/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
192
192
/// </summary>
193
+
///
194
+
/// Required API Key ACLs:
195
+
/// - addObject
193
196
/// <param name="indexName">Name of the index on which to perform the operation.</param>
194
197
/// <param name="batchWriteParams"></param>
195
198
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
/// Adds, updates, or deletes records in one index with a single API request. Batching index updates reduces latency and increases data integrity. - Actions are applied in the order they're specified. - Actions are equivalent to the individual API requests of the same name. This operation is subject to [indexing rate limits](https://support.algolia.com/hc/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia). (Synchronous version)
210
213
/// </summary>
214
+
///
215
+
/// Required API Key ACLs:
216
+
/// - addObject
211
217
/// <param name="indexName">Name of the index on which to perform the operation.</param>
212
218
/// <param name="batchWriteParams"></param>
213
219
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
/// Gets the permissions and restrictions of an API key. When authenticating with the admin API key, you can request information for any of your application's keys. When authenticating with other API keys, you can only retrieve information for that key, with the description replaced by `<redacted>`.
920
926
/// </summary>
927
+
///
928
+
/// Required API Key ACLs:
929
+
/// - search
921
930
/// <param name="key">API key.</param>
922
931
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
923
932
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Gets the permissions and restrictions of an API key. When authenticating with the admin API key, you can request information for any of your application's keys. When authenticating with other API keys, you can only retrieve information for that key, with the description replaced by `<redacted>`. (Synchronous version)
936
945
/// </summary>
946
+
///
947
+
/// Required API Key ACLs:
948
+
/// - search
937
949
/// <param name="key">API key.</param>
938
950
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
939
951
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Adds, updates, or deletes records in multiple indices with a single API request. - Actions are applied in the order they are specified. - Actions are equivalent to the individual API requests of the same name. This operation is subject to [indexing rate limits](https://support.algolia.com/hc/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
1666
1678
/// </summary>
1679
+
///
1680
+
/// Required API Key ACLs:
1681
+
/// - addObject
1667
1682
/// <param name="batchParams"></param>
1668
1683
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
1669
1684
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Adds, updates, or deletes records in multiple indices with a single API request. - Actions are applied in the order they are specified. - Actions are equivalent to the individual API requests of the same name. This operation is subject to [indexing rate limits](https://support.algolia.com/hc/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia). (Synchronous version)
1682
1697
/// </summary>
1698
+
///
1699
+
/// Required API Key ACLs:
1700
+
/// - addObject
1683
1701
/// <param name="batchParams"></param>
1684
1702
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
1685
1703
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
Copy file name to clipboardExpand all lines: clients/algoliasearch-client-dart/packages/client_search/lib/src/api/search_client.dart
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -253,6 +253,9 @@ final class SearchClient implements ApiClient {
253
253
254
254
/// Adds, updates, or deletes records in one index with a single API request. Batching index updates reduces latency and increases data integrity. - Actions are applied in the order they're specified. - Actions are equivalent to the individual API requests of the same name. This operation is subject to [indexing rate limits](https://support.algolia.com/hc/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
255
255
///
256
+
/// Required API Key ACLs:
257
+
/// - addObject
258
+
///
256
259
/// Parameters:
257
260
/// * [indexName] Name of the index on which to perform the operation.
258
261
/// * [batchWriteParams]
@@ -899,6 +902,9 @@ final class SearchClient implements ApiClient {
899
902
900
903
/// Gets the permissions and restrictions of an API key. When authenticating with the admin API key, you can request information for any of your application's keys. When authenticating with other API keys, you can only retrieve information for that key, with the description replaced by `<redacted>`.
@@ -1511,6 +1517,9 @@ final class SearchClient implements ApiClient {
1511
1517
1512
1518
/// Adds, updates, or deletes records in multiple indices with a single API request. - Actions are applied in the order they are specified. - Actions are equivalent to the individual API requests of the same name. This operation is subject to [indexing rate limits](https://support.algolia.com/hc/articles/4406975251089-Is-there-a-rate-limit-for-indexing-on-Algolia).
0 commit comments