Skip to content

Commit 8b40a31

Browse files
fix(specs): drop singer from ingestion specs [skip-bc] (#4281) (generated) [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent b569646 commit 8b40a31

File tree

32 files changed

+38
-63
lines changed

32 files changed

+38
-63
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';

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import type { DockerStreams } from './dockerStreams';
44

55
/**
6-
* The selected streams of a singer or airbyte connector.
6+
* The selected streams of an airbyte connector.
77
*/
88
export type DockerStreamsInput = {
99
streams: Array<DockerStreams>;

clients/algoliasearch-client-javascript/packages/ingestion/src/ingestionClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2055,7 +2055,7 @@ export function createIngestionClient({
20552055
},
20562056

20572057
/**
2058-
* Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
2058+
* Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
20592059
*
20602060
* Required API Key ACLs:
20612061
* - addObject

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/api/IngestionClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,7 @@ public class IngestionClient(
11421142
}
11431143

11441144
/**
1145-
* Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
1145+
* Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
11461146
*
11471147
* Required API Key ACLs:
11481148
* - addObject

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/model/ingestion/DockerImageType.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ import kotlinx.serialization.*
99
@Serializable
1010
public enum class DockerImageType(public val value: kotlin.String) {
1111

12-
@SerialName(value = "singer")
13-
Singer("singer"),
14-
1512
@SerialName(value = "custom")
1613
Custom("custom"),
1714

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/model/ingestion/DockerStreamsInput.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import kotlinx.serialization.*
55
import kotlinx.serialization.json.*
66

77
/**
8-
* The selected streams of a singer or airbyte connector.
8+
* The selected streams of an airbyte connector.
99
*
1010
* @param streams
1111
*/

clients/algoliasearch-client-php/lib/Api/IngestionClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2127,7 +2127,7 @@ public function searchTransformations($transformationSearch, $requestOptions = [
21272127
}
21282128

21292129
/**
2130-
* Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
2130+
* Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
21312131
*
21322132
* Required API Key ACLs:
21332133
* - addObject

clients/algoliasearch-client-php/lib/Model/Ingestion/DockerImageType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ class DockerImageType
1616
/**
1717
* Possible values of this enum.
1818
*/
19-
public const SINGER = 'singer';
20-
2119
public const CUSTOM = 'custom';
2220

2321
public const AIRBYTE = 'airbyte';
@@ -30,7 +28,6 @@ class DockerImageType
3028
public static function getAllowableEnumValues()
3129
{
3230
return [
33-
self::SINGER,
3431
self::CUSTOM,
3532
self::AIRBYTE,
3633
];

clients/algoliasearch-client-php/lib/Model/Ingestion/DockerStreamsInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* @category Class
1414
*
15-
* @description The selected streams of a singer or airbyte connector.
15+
* @description The selected streams of an airbyte connector.
1616
*/
1717
class DockerStreamsInput extends AbstractModel implements ModelInterface, \ArrayAccess, \JsonSerializable
1818
{

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

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

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

clients/algoliasearch-client-ruby/lib/algolia/api/ingestion_client.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2616,7 +2616,7 @@ def search_transformations(transformation_search, request_options = {})
26162616
@api_client.deserialize(response.body, request_options[:debug_return_type] || "Array<Ingestion::Transformation>")
26172617
end
26182618

2619-
# Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
2619+
# Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
26202620
#
26212621
# Required API Key ACLs:
26222622
# - addObject
@@ -2651,7 +2651,7 @@ def trigger_docker_source_discover_with_http_info(source_id, request_options = {
26512651
@api_client.call_api(:POST, path, new_options)
26522652
end
26532653

2654-
# Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
2654+
# Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
26552655
#
26562656
# Required API Key ACLs:
26572657
# - addObject

clients/algoliasearch-client-ruby/lib/algolia/models/ingestion/docker_image_type.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
module Algolia
77
module Ingestion
88
class DockerImageType
9-
SINGER = "singer".freeze
109
CUSTOM = "custom".freeze
1110
AIRBYTE = "airbyte".freeze
1211

1312
def self.all_vars
14-
@all_vars ||= [SINGER, CUSTOM, AIRBYTE].freeze
13+
@all_vars ||= [CUSTOM, AIRBYTE].freeze
1514
end
1615

1716
# Builds the enum from string

clients/algoliasearch-client-ruby/lib/algolia/models/ingestion/docker_streams_input.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
module Algolia
77
module Ingestion
8-
# The selected streams of a singer or airbyte connector.
8+
# The selected streams of an airbyte connector.
99
class DockerStreamsInput
1010
attr_accessor :streams
1111

clients/algoliasearch-client-scala/src/main/scala/algoliasearch/api/IngestionClient.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ class IngestionClient(
14291429
}
14301430

14311431
/** Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with
1432-
* `type: docker` and `imageType: singer`.
1432+
* `type: docker` and `imageType: airbyte`.
14331433
*
14341434
* Required API Key ACLs:
14351435
* - addObject

clients/algoliasearch-client-scala/src/main/scala/algoliasearch/ingestion/DockerImageType.scala

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,13 @@ sealed trait DockerImageType
2626
/** Image type.
2727
*/
2828
object DockerImageType {
29-
case object Singer extends DockerImageType {
30-
override def toString = "singer"
31-
}
3229
case object Custom extends DockerImageType {
3330
override def toString = "custom"
3431
}
3532
case object Airbyte extends DockerImageType {
3633
override def toString = "airbyte"
3734
}
38-
val values: Seq[DockerImageType] = Seq(Singer, Custom, Airbyte)
35+
val values: Seq[DockerImageType] = Seq(Custom, Airbyte)
3936

4037
def withName(name: String): DockerImageType = DockerImageType.values
4138
.find(_.toString == name)

clients/algoliasearch-client-scala/src/main/scala/algoliasearch/ingestion/DockerStreamsInput.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
package algoliasearch.ingestion
2121

22-
/** The selected streams of a singer or airbyte connector.
22+
/** The selected streams of an airbyte connector.
2323
*/
2424
case class DockerStreamsInput(
2525
streams: Seq[DockerStreams]

clients/algoliasearch-client-swift/Sources/Ingestion/IngestionClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2988,7 +2988,7 @@ open class IngestionClient {
29882988
}
29892989

29902990
// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with
2991-
// `type: docker` and `imageType: singer`.
2991+
// `type: docker` and `imageType: airbyte`.
29922992
// Required API Key ACLs:
29932993
// - addObject
29942994
// - deleteIndex

clients/algoliasearch-client-swift/Sources/Ingestion/Models/DockerImageType.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import Foundation
88

99
/// Image type.
1010
public enum DockerImageType: String, Codable, CaseIterable {
11-
case singer
1211
case custom
1312
case airbyte
1413
}

clients/algoliasearch-client-swift/Sources/Ingestion/Models/DockerStreamsInput.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Foundation
66
import Core
77
#endif
88

9-
/// The selected streams of a singer or airbyte connector.
9+
/// The selected streams of an airbyte connector.
1010
public struct DockerStreamsInput: Codable, JSONEncodable {
1111
public var streams: [DockerStreams]
1212

0 commit comments

Comments
 (0)