Skip to content

Commit 28db445

Browse files
fix(specs): drop singer from ingestion specs [skip-bc] (generated)
algolia/api-clients-automation#4281 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent ea933e4 commit 28db445

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3671,7 +3671,7 @@ public CompletableFuture<List<Transformation>> searchTransformationsAsync(@Nonnu
36713671

36723672
/**
36733673
* Triggers a stream-listing request for a source. Triggering stream-listing requests only works
3674-
* with sources with `type: docker` and `imageType: singer`.
3674+
* with sources with `type: docker` and `imageType: airbyte`.
36753675
*
36763676
* @param sourceID Unique identifier of a source. (required)
36773677
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -3684,7 +3684,7 @@ public WatchResponse triggerDockerSourceDiscover(@Nonnull String sourceID, Reque
36843684

36853685
/**
36863686
* Triggers a stream-listing request for a source. Triggering stream-listing requests only works
3687-
* with sources with `type: docker` and `imageType: singer`.
3687+
* with sources with `type: docker` and `imageType: airbyte`.
36883688
*
36893689
* @param sourceID Unique identifier of a source. (required)
36903690
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -3695,7 +3695,7 @@ public WatchResponse triggerDockerSourceDiscover(@Nonnull String sourceID) throw
36953695

36963696
/**
36973697
* (asynchronously) Triggers a stream-listing request for a source. Triggering stream-listing
3698-
* requests only works with sources with `type: docker` and `imageType: singer`.
3698+
* requests only works with sources with `type: docker` and `imageType: airbyte`.
36993699
*
37003700
* @param sourceID Unique identifier of a source. (required)
37013701
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -3712,7 +3712,7 @@ public CompletableFuture<WatchResponse> triggerDockerSourceDiscoverAsync(@Nonnul
37123712

37133713
/**
37143714
* (asynchronously) Triggers a stream-listing request for a source. Triggering stream-listing
3715-
* requests only works with sources with `type: docker` and `imageType: singer`.
3715+
* requests only works with sources with `type: docker` and `imageType: airbyte`.
37163716
*
37173717
* @param sourceID Unique identifier of a source. (required)
37183718
* @throws AlgoliaRuntimeException If it fails to process the API call

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
/** Image type. */
1010
public enum DockerImageType {
11-
SINGER("singer"),
12-
1311
CUSTOM("custom"),
1412

1513
AIRBYTE("airbyte");

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.List;
1010
import java.util.Objects;
1111

12-
/** The selected streams of a singer or airbyte connector. */
12+
/** The selected streams of an airbyte connector. */
1313
@JsonDeserialize(as = DockerStreamsInput.class)
1414
public class DockerStreamsInput implements TaskInput {
1515

0 commit comments

Comments
 (0)