From c94506b9655814d1a6444eea9efb1185ab20243a Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Mon, 23 Dec 2024 16:10:31 +0000 Subject: [PATCH] fix(specs): drop singer from ingestion specs [skip-bc] (generated) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/algolia/api-clients-automation/pull/4281 Co-authored-by: algolia-bot Co-authored-by: Clément Vannicatte --- algoliasearch/Clients/IngestionClient.cs | 4 ++-- algoliasearch/Models/Ingestion/DockerImageType.cs | 10 ++-------- algoliasearch/Models/Ingestion/DockerStreamsInput.cs | 2 +- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/algoliasearch/Clients/IngestionClient.cs b/algoliasearch/Clients/IngestionClient.cs index ca209161f..857302175 100644 --- a/algoliasearch/Clients/IngestionClient.cs +++ b/algoliasearch/Clients/IngestionClient.cs @@ -1612,7 +1612,7 @@ public interface IIngestionClient List SearchTransformations(TransformationSearch transformationSearch, RequestOptions options = null, CancellationToken cancellationToken = default); /// - /// 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`. /// /// /// Required API Key ACLs: @@ -1629,7 +1629,7 @@ public interface IIngestionClient Task TriggerDockerSourceDiscoverAsync(string sourceID, RequestOptions options = null, CancellationToken cancellationToken = default); /// - /// 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) /// /// /// Required API Key ACLs: diff --git a/algoliasearch/Models/Ingestion/DockerImageType.cs b/algoliasearch/Models/Ingestion/DockerImageType.cs index 73bd6e7d4..684eec97e 100644 --- a/algoliasearch/Models/Ingestion/DockerImageType.cs +++ b/algoliasearch/Models/Ingestion/DockerImageType.cs @@ -18,22 +18,16 @@ namespace Algolia.Search.Models.Ingestion; [JsonConverter(typeof(Serializer.JsonStringEnumConverter))] public enum DockerImageType { - /// - /// Enum Singer for value: singer - /// - [JsonPropertyName("singer")] - Singer = 1, - /// /// Enum Custom for value: custom /// [JsonPropertyName("custom")] - Custom = 2, + Custom = 1, /// /// Enum Airbyte for value: airbyte /// [JsonPropertyName("airbyte")] - Airbyte = 3 + Airbyte = 2 } diff --git a/algoliasearch/Models/Ingestion/DockerStreamsInput.cs b/algoliasearch/Models/Ingestion/DockerStreamsInput.cs index 9239f9e91..57b1f181f 100644 --- a/algoliasearch/Models/Ingestion/DockerStreamsInput.cs +++ b/algoliasearch/Models/Ingestion/DockerStreamsInput.cs @@ -12,7 +12,7 @@ namespace Algolia.Search.Models.Ingestion; /// -/// The selected streams of a singer or airbyte connector. +/// The selected streams of an airbyte connector. /// public partial class DockerStreamsInput {