Skip to content

Commit c94506b

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 f7002c0 commit c94506b

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

algoliasearch/Clients/IngestionClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,7 +1612,7 @@ public interface IIngestionClient
16121612
List<Transformation> SearchTransformations(TransformationSearch transformationSearch, RequestOptions options = null, CancellationToken cancellationToken = default);
16131613

16141614
/// <summary>
1615-
/// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
1615+
/// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
16161616
/// </summary>
16171617
///
16181618
/// Required API Key ACLs:
@@ -1629,7 +1629,7 @@ public interface IIngestionClient
16291629
Task<WatchResponse> TriggerDockerSourceDiscoverAsync(string sourceID, RequestOptions options = null, CancellationToken cancellationToken = default);
16301630

16311631
/// <summary>
1632-
/// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`. (Synchronous version)
1632+
/// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`. (Synchronous version)
16331633
/// </summary>
16341634
///
16351635
/// Required API Key ACLs:

algoliasearch/Models/Ingestion/DockerImageType.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,16 @@ namespace Algolia.Search.Models.Ingestion;
1818
[JsonConverter(typeof(Serializer.JsonStringEnumConverter<DockerImageType>))]
1919
public enum DockerImageType
2020
{
21-
/// <summary>
22-
/// Enum Singer for value: singer
23-
/// </summary>
24-
[JsonPropertyName("singer")]
25-
Singer = 1,
26-
2721
/// <summary>
2822
/// Enum Custom for value: custom
2923
/// </summary>
3024
[JsonPropertyName("custom")]
31-
Custom = 2,
25+
Custom = 1,
3226

3327
/// <summary>
3428
/// Enum Airbyte for value: airbyte
3529
/// </summary>
3630
[JsonPropertyName("airbyte")]
37-
Airbyte = 3
31+
Airbyte = 2
3832
}
3933

algoliasearch/Models/Ingestion/DockerStreamsInput.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Algolia.Search.Models.Ingestion;
1313

1414
/// <summary>
15-
/// The selected streams of a singer or airbyte connector.
15+
/// The selected streams of an airbyte connector.
1616
/// </summary>
1717
public partial class DockerStreamsInput
1818
{

0 commit comments

Comments
 (0)