Skip to content

Commit 2bdbd04

Browse files
fix(specs): update sourceRun docs (generated)
algolia/api-clients-automation#5057 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Devin Beeuwkes <[email protected]>
1 parent 5a1abf2 commit 2bdbd04

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3532,8 +3532,8 @@ public CompletableFuture<WatchResponse> pushTaskAsync(@Nonnull String taskID, @N
35323532
}
35333533

35343534
/**
3535-
* Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per
3536-
* task.
3535+
* Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools
3536+
* sources. Creates one run per task.
35373537
*
35383538
* @param sourceID Unique identifier of a source. (required)
35393539
* @param runSourcePayload (optional)
@@ -3547,8 +3547,8 @@ public RunSourceResponse runSource(@Nonnull String sourceID, RunSourcePayload ru
35473547
}
35483548

35493549
/**
3550-
* Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per
3551-
* task.
3550+
* Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools
3551+
* sources. Creates one run per task.
35523552
*
35533553
* @param sourceID Unique identifier of a source. (required)
35543554
* @param runSourcePayload (optional)
@@ -3559,8 +3559,8 @@ public RunSourceResponse runSource(@Nonnull String sourceID, RunSourcePayload ru
35593559
}
35603560

35613561
/**
3562-
* Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per
3563-
* task.
3562+
* Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools
3563+
* sources. Creates one run per task.
35643564
*
35653565
* @param sourceID Unique identifier of a source. (required)
35663566
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -3572,8 +3572,8 @@ public RunSourceResponse runSource(@Nonnull String sourceID, @Nullable RequestOp
35723572
}
35733573

35743574
/**
3575-
* Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per
3576-
* task.
3575+
* Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools
3576+
* sources. Creates one run per task.
35773577
*
35783578
* @param sourceID Unique identifier of a source. (required)
35793579
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -3583,8 +3583,8 @@ public RunSourceResponse runSource(@Nonnull String sourceID) throws AlgoliaRunti
35833583
}
35843584

35853585
/**
3586-
* (asynchronously) Runs all tasks linked to a source, only available for Shopify sources. It will
3587-
* create 1 run per task.
3586+
* (asynchronously) Runs all tasks linked to a source, only available for Shopify, BigCommerce and
3587+
* commercetools sources. Creates one run per task.
35883588
*
35893589
* @param sourceID Unique identifier of a source. (required)
35903590
* @param runSourcePayload (optional)
@@ -3608,8 +3608,8 @@ public CompletableFuture<RunSourceResponse> runSourceAsync(
36083608
}
36093609

36103610
/**
3611-
* (asynchronously) Runs all tasks linked to a source, only available for Shopify sources. It will
3612-
* create 1 run per task.
3611+
* (asynchronously) Runs all tasks linked to a source, only available for Shopify, BigCommerce and
3612+
* commercetools sources. Creates one run per task.
36133613
*
36143614
* @param sourceID Unique identifier of a source. (required)
36153615
* @param runSourcePayload (optional)
@@ -3621,8 +3621,8 @@ public CompletableFuture<RunSourceResponse> runSourceAsync(@Nonnull String sourc
36213621
}
36223622

36233623
/**
3624-
* (asynchronously) Runs all tasks linked to a source, only available for Shopify sources. It will
3625-
* create 1 run per task.
3624+
* (asynchronously) Runs all tasks linked to a source, only available for Shopify, BigCommerce and
3625+
* commercetools sources. Creates one run per task.
36263626
*
36273627
* @param sourceID Unique identifier of a source. (required)
36283628
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -3635,8 +3635,8 @@ public CompletableFuture<RunSourceResponse> runSourceAsync(@Nonnull String sourc
36353635
}
36363636

36373637
/**
3638-
* (asynchronously) Runs all tasks linked to a source, only available for Shopify sources. It will
3639-
* create 1 run per task.
3638+
* (asynchronously) Runs all tasks linked to a source, only available for Shopify, BigCommerce and
3639+
* commercetools sources. Creates one run per task.
36403640
*
36413641
* @param sourceID Unique identifier of a source. (required)
36423642
* @throws AlgoliaRuntimeException If it fails to process the API call

algoliasearch/src/main/java/com/algolia/model/ingestion/RunSourcePayload.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public RunSourcePayload addIndexToInclude(String indexToIncludeItem) {
3737
return this;
3838
}
3939

40-
/** List of index names to include in reidexing/update. */
40+
/** List of index names to include in reindex/update. */
4141
@javax.annotation.Nullable
4242
public List<String> getIndexToInclude() {
4343
return indexToInclude;
@@ -56,7 +56,7 @@ public RunSourcePayload addIndexToExclude(String indexToExcludeItem) {
5656
return this;
5757
}
5858

59-
/** List of index names to exclude in reidexing/update. */
59+
/** List of index names to exclude in reindex/update. */
6060
@javax.annotation.Nullable
6161
public List<String> getIndexToExclude() {
6262
return indexToExclude;
@@ -75,7 +75,7 @@ public RunSourcePayload addEntityIDs(String entityIDsItem) {
7575
return this;
7676
}
7777

78-
/** List of entityID to update. */
78+
/** List of entityIDs to update. */
7979
@javax.annotation.Nullable
8080
public List<String> getEntityIDs() {
8181
return entityIDs;

0 commit comments

Comments
 (0)