Skip to content

Commit 0d86fb8

Browse files
committed
[DOCS] Updates source code docs link in connector APIs
1 parent 6560033 commit 0d86fb8

File tree

21 files changed

+21
-21
lines changed

21 files changed

+21
-21
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/connector/check_in.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [String] :connector_id The unique identifier of the connector to be updated.
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/check-in-connector-api.html
3535
#
3636
def check_in(arguments = {})
3737
request_opts = { endpoint: arguments[:endpoint] || "connector.check_in" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/delete.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [String] :connector_id The unique identifier of the connector to be deleted.
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/delete-connector-api.html
3535
#
3636
def delete(arguments = {})
3737
request_opts = { endpoint: arguments[:endpoint] || "connector.delete" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/get.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [String] :connector_id The unique identifier of the connector to be returned.
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/get-connector-api.html
3535
#
3636
def get(arguments = {})
3737
request_opts = { endpoint: arguments[:endpoint] || "connector.get" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/last_sync.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
# @option arguments [Hash] :body Object with stats related to the last connector sync run. (*Required*)
3434
#
35-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-last-sync-api.html
3636
#
3737
def last_sync(arguments = {})
3838
request_opts = { endpoint: arguments[:endpoint] || "connector.last_sync" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/list.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# @option arguments [Integer] :size specifies a max number of results to get (default: 100)
3333
# @option arguments [Hash] :headers Custom HTTP headers
3434
#
35-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/list-connector-api.html
3636
#
3737
def list(arguments = {})
3838
request_opts = { endpoint: arguments[:endpoint] || "connector.list" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/post.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
# @option arguments [Hash] :body The connector configuration. (*Required*)
3333
#
34-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/create-connector-api.html
3535
#
3636
def post(arguments = {})
3737
request_opts = { endpoint: arguments[:endpoint] || "connector.post" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/put.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
# @option arguments [Hash] :body The connector configuration. (*Required*)
3434
#
35-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/create-connector-api.html
3636
#
3737
def put(arguments = {})
3838
request_opts = { endpoint: arguments[:endpoint] || "connector.put" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/update_configuration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
# @option arguments [Hash] :body Mapping between field names to configuration. (*Required*)
3434
#
35-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-configuration-api.html
3636
#
3737
def update_configuration(arguments = {})
3838
request_opts = { endpoint: arguments[:endpoint] || "connector.update_configuration" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/update_error.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
# @option arguments [Hash] :body An object containing the connector's error. (*Required*)
3434
#
35-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-error-api.html
3636
#
3737
def update_error(arguments = {})
3838
request_opts = { endpoint: arguments[:endpoint] || "connector.update_error" }

elasticsearch-api/lib/elasticsearch/api/actions/connector/update_filtering.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
# @option arguments [Hash] :body A list of connector filtering configurations. (*Required*)
3434
#
35-
# @see https://www.elastic.co/guide/en/enterprise-search/8.12/connectors.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-filtering-api.html
3636
#
3737
def update_filtering(arguments = {})
3838
request_opts = { endpoint: arguments[:endpoint] || "connector.update_filtering" }

0 commit comments

Comments
 (0)