File tree Expand file tree Collapse file tree 21 files changed +21
-21
lines changed
elasticsearch-api/lib/elasticsearch/api/actions Expand file tree Collapse file tree 21 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ module Actions
31
31
# @option arguments [String] :connector_id The unique identifier of the connector to be updated.
32
32
# @option arguments [Hash] :headers Custom HTTP headers
33
33
#
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
35
35
#
36
36
def check_in ( arguments = { } )
37
37
request_opts = { endpoint : arguments [ :endpoint ] || "connector.check_in" }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ module Actions
31
31
# @option arguments [String] :connector_id The unique identifier of the connector to be deleted.
32
32
# @option arguments [Hash] :headers Custom HTTP headers
33
33
#
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
35
35
#
36
36
def delete ( arguments = { } )
37
37
request_opts = { endpoint : arguments [ :endpoint ] || "connector.delete" }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ module Actions
31
31
# @option arguments [String] :connector_id The unique identifier of the connector to be returned.
32
32
# @option arguments [Hash] :headers Custom HTTP headers
33
33
#
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
35
35
#
36
36
def get ( arguments = { } )
37
37
request_opts = { endpoint : arguments [ :endpoint ] || "connector.get" }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module Actions
32
32
# @option arguments [Hash] :headers Custom HTTP headers
33
33
# @option arguments [Hash] :body Object with stats related to the last connector sync run. (*Required*)
34
34
#
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
36
36
#
37
37
def last_sync ( arguments = { } )
38
38
request_opts = { endpoint : arguments [ :endpoint ] || "connector.last_sync" }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module Actions
32
32
# @option arguments [Integer] :size specifies a max number of results to get (default: 100)
33
33
# @option arguments [Hash] :headers Custom HTTP headers
34
34
#
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
36
36
#
37
37
def list ( arguments = { } )
38
38
request_opts = { endpoint : arguments [ :endpoint ] || "connector.list" }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ module Actions
31
31
# @option arguments [Hash] :headers Custom HTTP headers
32
32
# @option arguments [Hash] :body The connector configuration. (*Required*)
33
33
#
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
35
35
#
36
36
def post ( arguments = { } )
37
37
request_opts = { endpoint : arguments [ :endpoint ] || "connector.post" }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module Actions
32
32
# @option arguments [Hash] :headers Custom HTTP headers
33
33
# @option arguments [Hash] :body The connector configuration. (*Required*)
34
34
#
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
36
36
#
37
37
def put ( arguments = { } )
38
38
request_opts = { endpoint : arguments [ :endpoint ] || "connector.put" }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module Actions
32
32
# @option arguments [Hash] :headers Custom HTTP headers
33
33
# @option arguments [Hash] :body Mapping between field names to configuration. (*Required*)
34
34
#
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
36
36
#
37
37
def update_configuration ( arguments = { } )
38
38
request_opts = { endpoint : arguments [ :endpoint ] || "connector.update_configuration" }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module Actions
32
32
# @option arguments [Hash] :headers Custom HTTP headers
33
33
# @option arguments [Hash] :body An object containing the connector's error. (*Required*)
34
34
#
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
36
36
#
37
37
def update_error ( arguments = { } )
38
38
request_opts = { endpoint : arguments [ :endpoint ] || "connector.update_error" }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module Actions
32
32
# @option arguments [Hash] :headers Custom HTTP headers
33
33
# @option arguments [Hash] :body A list of connector filtering configurations. (*Required*)
34
34
#
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
36
36
#
37
37
def update_filtering ( arguments = { } )
38
38
request_opts = { endpoint : arguments [ :endpoint ] || "connector.update_filtering" }
You can’t perform that action at this time.
0 commit comments