Skip to content

Commit 377eca8

Browse files
committed
[API] Adds new PUT endpoints for inference
1 parent 815c491 commit 377eca8

34 files changed

+1765
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Licensed to Elasticsearch B.V. under one or more contributor
2+
# license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright
4+
# ownership. Elasticsearch B.V. licenses this file to you under
5+
# the Apache License, Version 2.0 (the "License"); you may
6+
# not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
#
18+
# Auto generated from build hash f284cc16f4d4b4289bc679aa1529bb504190fe80
19+
# @see https://github.com/elastic/elasticsearch/tree/main/rest-api-spec
20+
#
21+
module Elasticsearch
22+
module API
23+
module Inference
24+
module Actions
25+
# Configure an AlibabaCloud AI Search inference endpoint
26+
#
27+
# @option arguments [String] :task_type The task type
28+
# @option arguments [String] :alibabacloud_inference_id The inference Id
29+
# @option arguments [Hash] :headers Custom HTTP headers
30+
# @option arguments [Hash] :body The inference endpoint's task and service settings
31+
#
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.17/infer-service-alibabacloud-ai-search.html
33+
#
34+
def put_alibabacloud(arguments = {})
35+
request_opts = { endpoint: arguments[:endpoint] || 'inference.put_alibabacloud' }
36+
37+
defined_params = %i[task_type alibabacloud_inference_id].each_with_object({}) do |variable, set_variables|
38+
set_variables[variable] = arguments[variable] if arguments.key?(variable)
39+
end
40+
request_opts[:defined_params] = defined_params unless defined_params.empty?
41+
42+
raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type]
43+
44+
unless arguments[:alibabacloud_inference_id]
45+
raise ArgumentError,
46+
"Required argument 'alibabacloud_inference_id' missing"
47+
end
48+
49+
arguments = arguments.clone
50+
headers = arguments.delete(:headers) || {}
51+
52+
body = arguments.delete(:body)
53+
54+
_task_type = arguments.delete(:task_type)
55+
56+
_alibabacloud_inference_id = arguments.delete(:alibabacloud_inference_id)
57+
58+
method = Elasticsearch::API::HTTP_PUT
59+
path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_alibabacloud_inference_id)}"
60+
params = {}
61+
62+
Elasticsearch::API::Response.new(
63+
perform_request(method, path, params, body, headers, request_opts)
64+
)
65+
end
66+
end
67+
end
68+
end
69+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Licensed to Elasticsearch B.V. under one or more contributor
2+
# license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright
4+
# ownership. Elasticsearch B.V. licenses this file to you under
5+
# the Apache License, Version 2.0 (the "License"); you may
6+
# not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
#
18+
# Auto generated from build hash f284cc16f4d4b4289bc679aa1529bb504190fe80
19+
# @see https://github.com/elastic/elasticsearch/tree/main/rest-api-spec
20+
#
21+
module Elasticsearch
22+
module API
23+
module Inference
24+
module Actions
25+
# Configure an Amazon Bedrock inference endpoint
26+
#
27+
# @option arguments [String] :task_type The task type
28+
# @option arguments [String] :amazonbedrock_inference_id The inference Id
29+
# @option arguments [Hash] :headers Custom HTTP headers
30+
# @option arguments [Hash] :body The inference endpoint's task and service settings
31+
#
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.17/infer-service-amazon-bedrock.html
33+
#
34+
def put_amazonbedrock(arguments = {})
35+
request_opts = { endpoint: arguments[:endpoint] || 'inference.put_amazonbedrock' }
36+
37+
defined_params = %i[task_type amazonbedrock_inference_id].each_with_object({}) do |variable, set_variables|
38+
set_variables[variable] = arguments[variable] if arguments.key?(variable)
39+
end
40+
request_opts[:defined_params] = defined_params unless defined_params.empty?
41+
42+
raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type]
43+
44+
unless arguments[:amazonbedrock_inference_id]
45+
raise ArgumentError,
46+
"Required argument 'amazonbedrock_inference_id' missing"
47+
end
48+
49+
arguments = arguments.clone
50+
headers = arguments.delete(:headers) || {}
51+
52+
body = arguments.delete(:body)
53+
54+
_task_type = arguments.delete(:task_type)
55+
56+
_amazonbedrock_inference_id = arguments.delete(:amazonbedrock_inference_id)
57+
58+
method = Elasticsearch::API::HTTP_PUT
59+
path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_amazonbedrock_inference_id)}"
60+
params = {}
61+
62+
Elasticsearch::API::Response.new(
63+
perform_request(method, path, params, body, headers, request_opts)
64+
)
65+
end
66+
end
67+
end
68+
end
69+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Licensed to Elasticsearch B.V. under one or more contributor
2+
# license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright
4+
# ownership. Elasticsearch B.V. licenses this file to you under
5+
# the Apache License, Version 2.0 (the "License"); you may
6+
# not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
#
18+
# Auto generated from build hash f284cc16f4d4b4289bc679aa1529bb504190fe80
19+
# @see https://github.com/elastic/elasticsearch/tree/main/rest-api-spec
20+
#
21+
module Elasticsearch
22+
module API
23+
module Inference
24+
module Actions
25+
# Configure an Anthropic inference endpoint
26+
#
27+
# @option arguments [String] :task_type The task type
28+
# @option arguments [String] :anthropic_inference_id The inference Id
29+
# @option arguments [Hash] :headers Custom HTTP headers
30+
# @option arguments [Hash] :body The inference endpoint's task and service settings
31+
#
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.17/infer-service-anthropic.html
33+
#
34+
def put_anthropic(arguments = {})
35+
request_opts = { endpoint: arguments[:endpoint] || 'inference.put_anthropic' }
36+
37+
defined_params = %i[task_type anthropic_inference_id].each_with_object({}) do |variable, set_variables|
38+
set_variables[variable] = arguments[variable] if arguments.key?(variable)
39+
end
40+
request_opts[:defined_params] = defined_params unless defined_params.empty?
41+
42+
raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type]
43+
44+
unless arguments[:anthropic_inference_id]
45+
raise ArgumentError,
46+
"Required argument 'anthropic_inference_id' missing"
47+
end
48+
49+
arguments = arguments.clone
50+
headers = arguments.delete(:headers) || {}
51+
52+
body = arguments.delete(:body)
53+
54+
_task_type = arguments.delete(:task_type)
55+
56+
_anthropic_inference_id = arguments.delete(:anthropic_inference_id)
57+
58+
method = Elasticsearch::API::HTTP_PUT
59+
path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_anthropic_inference_id)}"
60+
params = {}
61+
62+
Elasticsearch::API::Response.new(
63+
perform_request(method, path, params, body, headers, request_opts)
64+
)
65+
end
66+
end
67+
end
68+
end
69+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Licensed to Elasticsearch B.V. under one or more contributor
2+
# license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright
4+
# ownership. Elasticsearch B.V. licenses this file to you under
5+
# the Apache License, Version 2.0 (the "License"); you may
6+
# not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
#
18+
# Auto generated from build hash f284cc16f4d4b4289bc679aa1529bb504190fe80
19+
# @see https://github.com/elastic/elasticsearch/tree/main/rest-api-spec
20+
#
21+
module Elasticsearch
22+
module API
23+
module Inference
24+
module Actions
25+
# Configure an Azure AI Studio inference endpoint
26+
#
27+
# @option arguments [String] :task_type The task type
28+
# @option arguments [String] :azureaistudio_inference_id The inference Id
29+
# @option arguments [Hash] :headers Custom HTTP headers
30+
# @option arguments [Hash] :body The inference endpoint's task and service settings
31+
#
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.17/infer-service-azure-ai-studio.html
33+
#
34+
def put_azureaistudio(arguments = {})
35+
request_opts = { endpoint: arguments[:endpoint] || 'inference.put_azureaistudio' }
36+
37+
defined_params = %i[task_type azureaistudio_inference_id].each_with_object({}) do |variable, set_variables|
38+
set_variables[variable] = arguments[variable] if arguments.key?(variable)
39+
end
40+
request_opts[:defined_params] = defined_params unless defined_params.empty?
41+
42+
raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type]
43+
44+
unless arguments[:azureaistudio_inference_id]
45+
raise ArgumentError,
46+
"Required argument 'azureaistudio_inference_id' missing"
47+
end
48+
49+
arguments = arguments.clone
50+
headers = arguments.delete(:headers) || {}
51+
52+
body = arguments.delete(:body)
53+
54+
_task_type = arguments.delete(:task_type)
55+
56+
_azureaistudio_inference_id = arguments.delete(:azureaistudio_inference_id)
57+
58+
method = Elasticsearch::API::HTTP_PUT
59+
path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_azureaistudio_inference_id)}"
60+
params = {}
61+
62+
Elasticsearch::API::Response.new(
63+
perform_request(method, path, params, body, headers, request_opts)
64+
)
65+
end
66+
end
67+
end
68+
end
69+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Licensed to Elasticsearch B.V. under one or more contributor
2+
# license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright
4+
# ownership. Elasticsearch B.V. licenses this file to you under
5+
# the Apache License, Version 2.0 (the "License"); you may
6+
# not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
#
18+
# Auto generated from build hash f284cc16f4d4b4289bc679aa1529bb504190fe80
19+
# @see https://github.com/elastic/elasticsearch/tree/main/rest-api-spec
20+
#
21+
module Elasticsearch
22+
module API
23+
module Inference
24+
module Actions
25+
# Configure an Azure OpenAI inference endpoint
26+
#
27+
# @option arguments [String] :task_type The task type
28+
# @option arguments [String] :azureopenai_inference_id The inference Id
29+
# @option arguments [Hash] :headers Custom HTTP headers
30+
# @option arguments [Hash] :body The inference endpoint's task and service settings
31+
#
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.17/infer-service-azure-openai.html
33+
#
34+
def put_azureopenai(arguments = {})
35+
request_opts = { endpoint: arguments[:endpoint] || 'inference.put_azureopenai' }
36+
37+
defined_params = %i[task_type azureopenai_inference_id].each_with_object({}) do |variable, set_variables|
38+
set_variables[variable] = arguments[variable] if arguments.key?(variable)
39+
end
40+
request_opts[:defined_params] = defined_params unless defined_params.empty?
41+
42+
raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type]
43+
44+
unless arguments[:azureopenai_inference_id]
45+
raise ArgumentError,
46+
"Required argument 'azureopenai_inference_id' missing"
47+
end
48+
49+
arguments = arguments.clone
50+
headers = arguments.delete(:headers) || {}
51+
52+
body = arguments.delete(:body)
53+
54+
_task_type = arguments.delete(:task_type)
55+
56+
_azureopenai_inference_id = arguments.delete(:azureopenai_inference_id)
57+
58+
method = Elasticsearch::API::HTTP_PUT
59+
path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_azureopenai_inference_id)}"
60+
params = {}
61+
62+
Elasticsearch::API::Response.new(
63+
perform_request(method, path, params, body, headers, request_opts)
64+
)
65+
end
66+
end
67+
end
68+
end
69+
end

0 commit comments

Comments
 (0)