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 <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
  • Loading branch information
algolia-bot and shortcuts committed Dec 23, 2024
1 parent 5c16c10 commit 05b217e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/algolia/api/ingestion_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2616,7 +2616,7 @@ def search_transformations(transformation_search, request_options = {})
@api_client.deserialize(response.body, request_options[:debug_return_type] || "Array<Ingestion::Transformation>")
end

# 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:
# - addObject
Expand Down Expand Up @@ -2651,7 +2651,7 @@ def trigger_docker_source_discover_with_http_info(source_id, request_options = {
@api_client.call_api(:POST, path, new_options)
end

# 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:
# - addObject
Expand Down
3 changes: 1 addition & 2 deletions lib/algolia/models/ingestion/docker_image_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
module Algolia
module Ingestion
class DockerImageType
SINGER = "singer".freeze
CUSTOM = "custom".freeze
AIRBYTE = "airbyte".freeze

def self.all_vars
@all_vars ||= [SINGER, CUSTOM, AIRBYTE].freeze
@all_vars ||= [CUSTOM, AIRBYTE].freeze
end

# Builds the enum from string
Expand Down
2 changes: 1 addition & 1 deletion lib/algolia/models/ingestion/docker_streams_input.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module Algolia
module Ingestion
# The selected streams of a singer or airbyte connector.
# The selected streams of an airbyte connector.
class DockerStreamsInput
attr_accessor :streams

Expand Down

0 comments on commit 05b217e

Please sign in to comment.