File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -48,4 +48,19 @@ action:
4848 - deleteObject
4949 - delete
5050 - clear
51- description : Type of indexing operation.
51+ description : |
52+ Which indexing operation to perform:
53+
54+ - `addObject`: adds records to an index.
55+ Equivalent to the "Add a new record (with auto-generated object ID)" operation.
56+ - `updateObject`: adds or replaces records in an index.
57+ Equivalent to the "Add or replace a record" operation.
58+ - `partialUpdateObject`: adds or updates attributes within records.
59+ Equivalent to the "Add or update attributes" operation with the `createIfNoExists` parameter set to true.
60+ (If a record with the specified `objectID` doesn't exist in the specified index, this action creates adds the record to the index)
61+ - `partialUpdateObjectNoCreate`: same as `partialUpdateObject`, but with `createIfNoExists` set to false.
62+ (A record isn't added to the index if its `objectID` doesn't exist)
63+ - `deleteObject`: delete records from an index.
64+ Equivalent to the "Delete a record" operation.
65+ - `delete`. Delete an index. Equivalent to the "Delete an index" operation.
66+ - `clear`: delete all records from an index. Equivalent to the "Delete all records from an index operation".
You can’t perform that action at this time.
0 commit comments