Skip to content

Commit 993f70e

Browse files
chore: generated code for commit 8e98407. [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 8e98407 commit 993f70e

File tree

12 files changed

+30
-28
lines changed

12 files changed

+30
-28
lines changed

clients/algoliasearch-client-csharp/algoliasearch/Clients/IngestionClient.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ public interface IIngestionClient
10021002
SourceWatchResponse TriggerDockerSourceDiscover(string sourceID, RequestOptions options = null, CancellationToken cancellationToken = default);
10031003

10041004
/// <summary>
1005-
/// Searches for transformations.
1005+
/// Try a transformation.
10061006
/// </summary>
10071007
/// <param name="transformationTry"></param>
10081008
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -1014,7 +1014,7 @@ public interface IIngestionClient
10141014
Task<TransformationTryResponse> TryTransformationsAsync(TransformationTry transformationTry, RequestOptions options = null, CancellationToken cancellationToken = default);
10151015

10161016
/// <summary>
1017-
/// Searches for transformations. (Synchronous version)
1017+
/// Try a transformation. (Synchronous version)
10181018
/// </summary>
10191019
/// <param name="transformationTry"></param>
10201020
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
@@ -3084,7 +3084,7 @@ public SourceWatchResponse TriggerDockerSourceDiscover(string sourceID, RequestO
30843084

30853085

30863086
/// <summary>
3087-
/// Searches for transformations.
3087+
/// Try a transformation.
30883088
/// </summary>
30893089
///
30903090
/// Required API Key ACLs:
@@ -3113,7 +3113,7 @@ public async Task<TransformationTryResponse> TryTransformationsAsync(Transformat
31133113

31143114

31153115
/// <summary>
3116-
/// Searches for transformations. (Synchronous version)
3116+
/// Try a transformation. (Synchronous version)
31173117
/// </summary>
31183118
///
31193119
/// Required API Key ACLs:

clients/algoliasearch-client-go/algolia/ingestion/api_ingestion.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/api/IngestionClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2873,7 +2873,7 @@ public CompletableFuture<SourceWatchResponse> triggerDockerSourceDiscoverAsync(@
28732873
}
28742874

28752875
/**
2876-
* Searches for transformations.
2876+
* Try a transformation.
28772877
*
28782878
* @param transformationTry (required)
28792879
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -2886,7 +2886,7 @@ public TransformationTryResponse tryTransformations(@Nonnull TransformationTry t
28862886
}
28872887

28882888
/**
2889-
* Searches for transformations.
2889+
* Try a transformation.
28902890
*
28912891
* @param transformationTry (required)
28922892
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -2896,7 +2896,7 @@ public TransformationTryResponse tryTransformations(@Nonnull TransformationTry t
28962896
}
28972897

28982898
/**
2899-
* (asynchronously) Searches for transformations.
2899+
* (asynchronously) Try a transformation.
29002900
*
29012901
* @param transformationTry (required)
29022902
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -2914,7 +2914,7 @@ public CompletableFuture<TransformationTryResponse> tryTransformationsAsync(
29142914
}
29152915

29162916
/**
2917-
* (asynchronously) Searches for transformations.
2917+
* (asynchronously) Try a transformation.
29182918
*
29192919
* @param transformationTry (required)
29202920
* @throws AlgoliaRuntimeException If it fails to process the API call

clients/algoliasearch-client-javascript/packages/ingestion/src/ingestionClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1909,7 +1909,7 @@ export function createIngestionClient({
19091909
},
19101910

19111911
/**
1912-
* Searches for transformations.
1912+
* Try a transformation.
19131913
*
19141914
* Required API Key ACLs:
19151915
* - addObject

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/api/IngestionClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ public class IngestionClient(
917917
}
918918

919919
/**
920-
* Searches for transformations.
920+
* Try a transformation.
921921
*
922922
* Required API Key ACLs:
923923
* - addObject

clients/algoliasearch-client-php/lib/Api/IngestionClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1724,7 +1724,7 @@ public function triggerDockerSourceDiscover($sourceID, $requestOptions = [])
17241724
}
17251725

17261726
/**
1727-
* Searches for transformations.
1727+
* Try a transformation.
17281728
*
17291729
* Required API Key ACLs:
17301730
* - addObject

clients/algoliasearch-client-python/algoliasearch/ingestion/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3168,7 +3168,7 @@ async def try_transformations_with_http_info(
31683168
request_options: Optional[Union[dict, RequestOptions]] = None,
31693169
) -> ApiResponse[str]:
31703170
"""
3171-
Searches for transformations.
3171+
Try a transformation.
31723172
31733173
Required API Key ACLs:
31743174
- addObject
@@ -3206,7 +3206,7 @@ async def try_transformations(
32063206
request_options: Optional[Union[dict, RequestOptions]] = None,
32073207
) -> TransformationTryResponse:
32083208
"""
3209-
Searches for transformations.
3209+
Try a transformation.
32103210
32113211
Required API Key ACLs:
32123212
- addObject

clients/algoliasearch-client-ruby/lib/algolia/api/ingestion_client.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1934,7 +1934,7 @@ def trigger_docker_source_discover(source_id, request_options = {})
19341934
@api_client.deserialize(response.body, request_options[:debug_return_type] || 'Ingestion::SourceWatchResponse')
19351935
end
19361936

1937-
# Searches for transformations.
1937+
# Try a transformation.
19381938
#
19391939
# Required API Key ACLs:
19401940
# - addObject
@@ -1968,7 +1968,7 @@ def try_transformations_with_http_info(transformation_try, request_options = {})
19681968
@api_client.call_api(:POST, path, new_options)
19691969
end
19701970

1971-
# Searches for transformations.
1971+
# Try a transformation.
19721972
#
19731973
# Required API Key ACLs:
19741974
# - addObject

clients/algoliasearch-client-scala/src/main/scala/algoliasearch/api/IngestionClient.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,7 @@ class IngestionClient(
11361136
execute[SourceWatchResponse](request, requestOptions)
11371137
}
11381138

1139-
/** Searches for transformations.
1139+
/** Try a transformation.
11401140
*
11411141
* Required API Key ACLs:
11421142
* - addObject

clients/algoliasearch-client-swift/Sources/Ingestion/IngestionClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2373,7 +2373,7 @@ open class IngestionClient {
23732373
return body
23742374
}
23752375

2376-
// Searches for transformations.
2376+
// Try a transformation.
23772377
// Required API Key ACLs:
23782378
// - addObject
23792379
// - deleteIndex

specs/bundled/ingestion.doc.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8534,8 +8534,8 @@ paths:
85348534
post:
85358535
tags:
85368536
- transformations
8537-
summary: Search for transformations
8538-
description: Searches for transformations.
8537+
summary: Try a transformation
8538+
description: Try a transformation.
85398539
operationId: tryTransformations
85408540
x-acl:
85418541
- addObject
@@ -12928,7 +12928,8 @@ x-tagGroups:
1292812928
- name: Resources
1292912929
tags:
1293012930
- authentications
12931-
- sources
1293212931
- destinations
12933-
- tasks
1293412932
- observability
12933+
- sources
12934+
- tasks
12935+
- transformations

specs/bundled/ingestion.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1112,8 +1112,8 @@ paths:
11121112
post:
11131113
tags:
11141114
- ingestion
1115-
summary: Search for transformations
1116-
description: Searches for transformations.
1115+
summary: Try a transformation
1116+
description: Try a transformation.
11171117
operationId: tryTransformations
11181118
x-acl:
11191119
- addObject
@@ -3679,7 +3679,8 @@ x-tagGroups:
36793679
- name: Resources
36803680
tags:
36813681
- authentications
3682-
- sources
36833682
- destinations
3684-
- tasks
36853683
- observability
3684+
- sources
3685+
- tasks
3686+
- transformations

0 commit comments

Comments
 (0)