Skip to content

Commit

Permalink
fix(specs): drop singer from ingestion specs [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4281

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
algolia-bot and shortcuts committed Dec 23, 2024
1 parent f7002c0 commit c94506b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
4 changes: 2 additions & 2 deletions algoliasearch/Clients/IngestionClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1612,7 +1612,7 @@ public interface IIngestionClient
List<Transformation> SearchTransformations(TransformationSearch transformationSearch, RequestOptions options = null, CancellationToken cancellationToken = default);

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

/// <summary>
/// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`. (Synchronous version)
/// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`. (Synchronous version)
/// </summary>
///
/// Required API Key ACLs:
Expand Down
10 changes: 2 additions & 8 deletions algoliasearch/Models/Ingestion/DockerImageType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,16 @@ namespace Algolia.Search.Models.Ingestion;
[JsonConverter(typeof(Serializer.JsonStringEnumConverter<DockerImageType>))]
public enum DockerImageType
{
/// <summary>
/// Enum Singer for value: singer
/// </summary>
[JsonPropertyName("singer")]
Singer = 1,

/// <summary>
/// Enum Custom for value: custom
/// </summary>
[JsonPropertyName("custom")]
Custom = 2,
Custom = 1,

/// <summary>
/// Enum Airbyte for value: airbyte
/// </summary>
[JsonPropertyName("airbyte")]
Airbyte = 3
Airbyte = 2
}

2 changes: 1 addition & 1 deletion algoliasearch/Models/Ingestion/DockerStreamsInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace Algolia.Search.Models.Ingestion;

/// <summary>
/// The selected streams of a singer or airbyte connector.
/// The selected streams of an airbyte connector.
/// </summary>
public partial class DockerStreamsInput
{
Expand Down

0 comments on commit c94506b

Please sign in to comment.