Skip to content

Commit a5b32f6

Browse files
authored
Merge branch 'main' into fix/support-sla-policies
2 parents b9d3fea + 8b40a31 commit a5b32f6

File tree

35 files changed

+41
-66
lines changed

35 files changed

+41
-66
lines changed

clients/algoliasearch-client-csharp/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:

clients/algoliasearch-client-csharp/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

clients/algoliasearch-client-csharp/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
{

clients/algoliasearch-client-go/algolia/ingestion/api_ingestion.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/ingestion/model_docker_image_type.go

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/ingestion/model_docker_streams_input.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-java/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

clients/algoliasearch-client-java/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");

clients/algoliasearch-client-java/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

clients/algoliasearch-client-javascript/packages/ingestion/model/dockerImageType.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
/**
44
* Image type.
55
*/
6-
export type DockerImageType = 'singer' | 'custom' | 'airbyte';
6+
export type DockerImageType = 'custom' | 'airbyte';

0 commit comments

Comments
 (0)