File tree 13 files changed +156
-59
lines changed
generators/src/main/java/com/algolia/codegen
tests/CTS/requests/ingestion
13 files changed +156
-59
lines changed Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ public extension SearchClient {
426
426
func chunkedBatch(
427
427
indexName: String ,
428
428
objects: [ some Encodable ] ,
429
- action: Action = . addObject,
429
+ action: SearchAction = . addObject,
430
430
waitForTasks: Bool = false ,
431
431
batchSize: Int = 1000 ,
432
432
requestOptions: RequestOptions ? = nil
@@ -439,7 +439,7 @@ public extension SearchClient {
439
439
for batch in batches {
440
440
let batchResponse = try await self . batch (
441
441
indexName: indexName,
442
- batchWriteParams: BatchWriteParams (
442
+ batchWriteParams: SearchBatchWriteParams (
443
443
requests: batch. map {
444
444
. init( action: action, body: AnyCodable ( $0) )
445
445
}
Original file line number Diff line number Diff line change 32
32
public class AlgoliaSwiftGenerator extends Swift5ClientCodegen {
33
33
34
34
private static final List <String > reservedModelNames = List .of (
35
+ "action" ,
35
36
"advancedsyntaxfeatures" ,
36
37
"alternativesasexact" ,
37
38
"anchoring" ,
@@ -44,6 +45,8 @@ public class AlgoliaSwiftGenerator extends Swift5ClientCodegen {
44
45
"basesearchparams" ,
45
46
"basesearchparamswithoutquery" ,
46
47
"basesearchresponse" ,
48
+ "batchrequest" ,
49
+ "batchwriteparams" ,
47
50
"condition" ,
48
51
"configuration" ,
49
52
"consequence" ,
Original file line number Diff line number Diff line change
1
+ batchWriteParams :
2
+ title : batchWriteParams
3
+ description : Batch parameters.
4
+ type : object
5
+ additionalProperties : false
6
+ properties :
7
+ requests :
8
+ type : array
9
+ items :
10
+ title : batchRequest
11
+ type : object
12
+ additionalProperties : false
13
+ properties :
14
+ action :
15
+ $ref : ' #/action'
16
+ body :
17
+ type : object
18
+ description : Operation arguments (varies with specified `action`).
19
+ example :
20
+ name : Betty Jane McCamey
21
+ company : Vita Foods Inc.
22
+ email : betty@mccamey.com
23
+ required :
24
+ - action
25
+ - body
26
+ required :
27
+ - requests
28
+ example :
29
+ batch :
30
+ summary : Batch indexing request
31
+ value :
32
+ requests :
33
+ - action : addObject
34
+ body :
35
+ name : Betty Jane McCamey
36
+ company : Vita Foods Inc.
37
+ email : betty@mccamey.com
38
+ - action : addObject
39
+ body :
40
+ name : Gayla geimer
41
+ company : Ortman McCain Co.
42
+ email : gayla@geimer.com
43
+
44
+ action :
45
+ type : string
46
+ enum :
47
+ - addObject
48
+ - updateObject
49
+ - partialUpdateObject
50
+ - partialUpdateObjectNoCreate
51
+ - deleteObject
52
+ - delete
53
+ - clear
54
+ description : Type of indexing operation.
Original file line number Diff line number Diff line change
1
+ post :
2
+ tags :
3
+ - tasks
4
+ summary : Push a `batch` request payload through the Pipeline
5
+ description : Push a `batch` request payload through the Pipeline. You can check the status of task pushes with the observability endpoints.
6
+ operationId : pushTask
7
+ x-acl :
8
+ - addObject
9
+ - deleteIndex
10
+ - editSettings
11
+ parameters :
12
+ - $ref : ' ../../../common/parameters.yml#/pathTaskID'
13
+ requestBody :
14
+ description : Request body of a Search API `batch` request that will be pushed in the Connectors pipeline.
15
+ content :
16
+ application/json :
17
+ schema :
18
+ $ref : ' ../../../../common/schemas/Batch.yml#/batchWriteParams'
19
+ required : true
20
+ responses :
21
+ ' 200 ' :
22
+ description : OK
23
+ content :
24
+ application/json :
25
+ schema :
26
+ $ref : ' ../../../common/schemas/run.yml#/RunResponse'
27
+ ' 400 ' :
28
+ $ref : ' ../../../../common/responses/BadRequest.yml'
Original file line number Diff line number Diff line change @@ -159,6 +159,8 @@ paths:
159
159
$ref : ' paths/tasks/v2/taskID.yml'
160
160
/2/tasks/{taskID}/run :
161
161
$ref : ' paths/tasks/v2/runTask.yml'
162
+ /2/tasks/{taskID}/push :
163
+ $ref : ' paths/tasks/v2/pushTask.yml'
162
164
/2/tasks/{taskID}/enable :
163
165
$ref : ' paths/tasks/v2/enableTask.yml'
164
166
/2/tasks/{taskID}/disable :
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ method:
27
27
description : The `batch` `action` to perform on the given array of `objects`, defaults to `addObject`.
28
28
required : false
29
29
schema :
30
- $ref : ' ../paths/objects/ common/schemas.yml#/action'
30
+ $ref : ' ../../ common/schemas/Batch .yml#/action'
31
31
- in : query
32
32
name : waitForTasks
33
33
description : Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable.
Original file line number Diff line number Diff line change @@ -12,53 +12,13 @@ post:
12
12
- Actions are equivalent to the individual API requests of the same name.
13
13
parameters :
14
14
- $ref : ' ../../../common/parameters.yml#/IndexName'
15
+ x-codegen-request-body-name : batchWriteParams
15
16
requestBody :
16
- required : true
17
17
content :
18
18
application/json :
19
19
schema :
20
- title : batchWriteParams
21
- description : Batch parameters.
22
- type : object
23
- additionalProperties : false
24
- properties :
25
- requests :
26
- type : array
27
- items :
28
- title : batchRequest
29
- type : object
30
- additionalProperties : false
31
- properties :
32
- action :
33
- $ref : ' common/schemas.yml#/action'
34
- body :
35
- type : object
36
- description : Operation arguments (varies with specified `action`).
37
- example :
38
- name : Betty Jane McCamey
39
- company : Vita Foods Inc.
40
- email : betty@mccamey.com
41
-
42
- required :
43
- - action
44
- - body
45
- required :
46
- - requests
47
- examples :
48
- batch :
49
- summary : Batch indexing request
50
- value :
51
- requests :
52
- - action : addObject
53
- body :
54
- name : Betty Jane McCamey
55
- company : Vita Foods Inc.
56
- email : betty@mccamey.com
57
- - action : addObject
58
- body :
59
- name : Gayla geimer
60
- company : Ortman McCain Co.
61
- email : gayla@geimer.com
20
+ $ref : ' ../../../common/schemas/Batch.yml#/batchWriteParams'
21
+ required : true
62
22
responses :
63
23
' 200 ' :
64
24
description : OK
Original file line number Diff line number Diff line change 1
- action :
2
- type : string
3
- enum :
4
- - addObject
5
- - updateObject
6
- - partialUpdateObject
7
- - partialUpdateObjectNoCreate
8
- - deleteObject
9
- - delete
10
- - clear
11
- description : Type of indexing operation.
12
-
13
1
builtInOperationType :
14
2
type : string
15
3
enum :
Original file line number Diff line number Diff line change 26
26
additionalProperties : false
27
27
properties :
28
28
action :
29
- $ref : ' common/schemas.yml#/action'
29
+ $ref : ' ../../../ common/schemas/Batch .yml#/action'
30
30
body :
31
31
type : object
32
32
description : Operation arguments (varies with specified `action`).
Original file line number Diff line number Diff line change @@ -4,7 +4,12 @@ using Algolia.Search.Http;
4
4
using Algolia.Search.Clients;
5
5
// IMPORT<
6
6
using Algolia.Search.Models.{ {clientPrefix} };
7
+ { {#isSearchClient} }
7
8
using Action = Algolia.Search.Models.Search.Action;
9
+ { {/isSearchClient} }
10
+ { {^isSearchClient} }
11
+ using Action = Algolia.Search.Models.Ingestion.Action;
12
+ { {/isSearchClient} }
8
13
9
14
public class Snippet{ {client} }
10
15
{
Original file line number Diff line number Diff line change @@ -8,7 +8,12 @@ using Xunit;
8
8
using System.Text.Json;
9
9
using Quibble.Xunit;
10
10
using dotenv.net;
11
+ { {#isSearchClient} }
11
12
using Action = Algolia.Search.Models.Search.Action;
13
+ { {/isSearchClient} }
14
+ { {^isSearchClient} }
15
+ using Action = Algolia.Search.Models.Ingestion.Action;
16
+ { {/isSearchClient} }
12
17
13
18
namespace Algolia.Search.e2e;
14
19
Original file line number Diff line number Diff line change @@ -8,7 +8,12 @@ using Xunit;
8
8
using System.Text.Json;
9
9
using Quibble.Xunit;
10
10
using dotenv.net;
11
+ { {#isSearchClient} }
11
12
using Action = Algolia.Search.Models.Search.Action;
13
+ { {/isSearchClient} }
14
+ { {^isSearchClient} }
15
+ using Action = Algolia.Search.Models.Ingestion.Action;
16
+ { {/isSearchClient} }
12
17
13
18
namespace Algolia.Search.requests;
14
19
Original file line number Diff line number Diff line change
1
+ [
2
+ {
3
+ "parameters" : {
4
+ "taskID" : " 6c02aeb1-775e-418e-870b-1faccd4b2c0f" ,
5
+ "batchWriteParams" : {
6
+ "requests" : [
7
+ {
8
+ "action" : " addObject" ,
9
+ "body" : {
10
+ "key" : " bar" ,
11
+ "foo" : " 1"
12
+ }
13
+ },
14
+ {
15
+ "action" : " addObject" ,
16
+ "body" : {
17
+ "key" : " baz" ,
18
+ "foo" : " 2"
19
+ }
20
+ }
21
+ ]
22
+ }
23
+ },
24
+ "request" : {
25
+ "path" : " /2/tasks/6c02aeb1-775e-418e-870b-1faccd4b2c0f/push" ,
26
+ "method" : " POST" ,
27
+ "body" : {
28
+ "requests" : [
29
+ {
30
+ "action" : " addObject" ,
31
+ "body" : {
32
+ "key" : " bar" ,
33
+ "foo" : " 1"
34
+ }
35
+ },
36
+ {
37
+ "action" : " addObject" ,
38
+ "body" : {
39
+ "key" : " baz" ,
40
+ "foo" : " 2"
41
+ }
42
+ }
43
+ ]
44
+ }
45
+ }
46
+ }
47
+ ]
You can’t perform that action at this time.
0 commit comments