Skip to content

Commit ed3a3c0

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 eb68bcd commit ed3a3c0

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

algoliasearch/ingestion/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4125,7 +4125,7 @@ async def trigger_docker_source_discover_with_http_info(
41254125
request_options: Optional[Union[dict, RequestOptions]] = None,
41264126
) -> ApiResponse[str]:
41274127
"""
4128-
Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
4128+
Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
41294129
41304130
Required API Key ACLs:
41314131
- addObject
@@ -4167,7 +4167,7 @@ async def trigger_docker_source_discover(
41674167
request_options: Optional[Union[dict, RequestOptions]] = None,
41684168
) -> WatchResponse:
41694169
"""
4170-
Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
4170+
Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
41714171
41724172
Required API Key ACLs:
41734173
- addObject
@@ -8900,7 +8900,7 @@ def trigger_docker_source_discover_with_http_info(
89008900
request_options: Optional[Union[dict, RequestOptions]] = None,
89018901
) -> ApiResponse[str]:
89028902
"""
8903-
Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
8903+
Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
89048904
89058905
Required API Key ACLs:
89068906
- addObject
@@ -8942,7 +8942,7 @@ def trigger_docker_source_discover(
89428942
request_options: Optional[Union[dict, RequestOptions]] = None,
89438943
) -> WatchResponse:
89448944
"""
8945-
Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
8945+
Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
89468946
89478947
Required API Key ACLs:
89488948
- addObject

algoliasearch/ingestion/models/docker_image_type.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class DockerImageType(str, Enum):
2424
"""
2525
allowed enum values
2626
"""
27-
SINGER = "singer"
28-
2927
CUSTOM = "custom"
3028

3129
AIRBYTE = "airbyte"

algoliasearch/ingestion/models/docker_streams_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _alias_generator(name: str) -> str:
3131

3232
class DockerStreamsInput(BaseModel):
3333
"""
34-
The selected streams of a singer or airbyte connector.
34+
The selected streams of an airbyte connector.
3535
"""
3636

3737
streams: List[DockerStreams]

0 commit comments

Comments
 (0)