-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update generated code and docs to 8.15
- Loading branch information
Showing
54 changed files
with
1,138 additions
and
1,058 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Connector APIs | ||
|
||
The connector and sync jobs APIs provide a convenient way to create and manage [Elastic connectors](https://www.elastic.co/guide/en/enterprise-search/master/connectors.html) and sync jobs in an internal index. To get started with Connector APIs, check out the tutorial. | ||
|
||
Connectors are Elasticsearch integrations that bring content from third-party data sources, which can be deployed on Elastic Cloud or hosted on your own infrastructure: | ||
|
||
* Native connectors are a managed service on Elastic Cloud | ||
* Connector clients are self-managed on your infrastructure | ||
|
||
This API provides an alternative to relying solely on Kibana UI for connector and sync job management. The API comes with a set of validations and assertions to ensure that the state representation in the internal index remains valid. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ES|QL APIs | ||
|
||
The Elasticsearch Query Language (ES|QL) provides a powerful way to filter, transform, and analyze data stored in Elasticsearch, and in the future in other runtimes. For an overview of ES|QL and related tutorials, see [ES|QL](https://www.elastic.co/guide/en/elasticsearch/reference/current/esql.html). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Inference APIs | ||
|
||
The inference APIs enable you to create inference endpoints and use machine learning models of different providers - such as Amazon Bedrock, Anthropic, Azure AI Studio, Cohere, Google AI, Mistral, OpenAI, or HuggingFace - as a service. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Query rules APIs | ||
|
||
Query rules allow you to configure per-query rules that are applied at query time to queries that match the specific rule. Query rules are organized into rulesets, collections of query rules that are matched against incoming queries. Query rules are applied using the rule query. | ||
|
||
If a query matches one or more rules in the ruleset, the query is re-written to apply the rules before searching. This allows pinning documents for only queries that match a specific term. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Search Application APIs | ||
|
||
Use Search Application APIs to manage tasks and resources related to Search Applications. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Pipeline simulation APIs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Synonyms APIs | ||
|
||
The synonyms management API provides a convenient way to define and manage synonyms in an internal system index. Related synonyms can be grouped in a "synonyms set". Create as many synonym sets as you need. | ||
|
||
This provides an alternative to: | ||
|
||
* Defining inline synonyms in an analyzer definition, which impacts mapping size and can lead to performance issues. | ||
* Using synonyms files, which implies uploading and managing file consistency on all cluster nodes. | ||
|
||
Synonyms sets can be used to configure synonym graph token filters and synonym token filters. These filters are applied as part of the analysis process by the search analyzer. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
written = [ | ||
'async_search.rs', | ||
'autoscaling.rs', | ||
'cat.rs', | ||
'ccr.rs', | ||
'cluster.rs', | ||
'connector.rs', | ||
'dangling_indices.rs', | ||
'enrich.rs', | ||
'eql.rs', | ||
'esql.rs', | ||
'features.rs', | ||
'fleet.rs', | ||
'graph.rs', | ||
'ilm.rs', | ||
'indices.rs', | ||
'inference.rs', | ||
'ingest.rs', | ||
'license.rs', | ||
'logstash.rs', | ||
'migration.rs', | ||
'ml.rs', | ||
'monitoring.rs', | ||
'nodes.rs', | ||
'profiling.rs', | ||
'query_rules.rs', | ||
'rollup.rs', | ||
'root/mod.rs', | ||
'search_application.rs', | ||
'searchable_snapshots.rs', | ||
'security.rs', | ||
'shutdown.rs', | ||
'simulate.rs', | ||
'slm.rs', | ||
'snapshot.rs', | ||
'sql.rs', | ||
'ssl.rs', | ||
'synonyms.rs', | ||
'tasks.rs', | ||
'text_structure.rs', | ||
'transform.rs', | ||
'watcher.rs', | ||
'xpack.rs', | ||
"async_search.rs", | ||
"autoscaling.rs", | ||
"cat.rs", | ||
"ccr.rs", | ||
"cluster.rs", | ||
"connector.rs", | ||
"dangling_indices.rs", | ||
"enrich.rs", | ||
"eql.rs", | ||
"esql.rs", | ||
"features.rs", | ||
"fleet.rs", | ||
"graph.rs", | ||
"ilm.rs", | ||
"indices.rs", | ||
"inference.rs", | ||
"ingest.rs", | ||
"license.rs", | ||
"logstash.rs", | ||
"migration.rs", | ||
"ml.rs", | ||
"monitoring.rs", | ||
"nodes.rs", | ||
"profiling.rs", | ||
"query_rules.rs", | ||
"rollup.rs", | ||
"root/mod.rs", | ||
"search_application.rs", | ||
"searchable_snapshots.rs", | ||
"security.rs", | ||
"shutdown.rs", | ||
"simulate.rs", | ||
"slm.rs", | ||
"snapshot.rs", | ||
"sql.rs", | ||
"ssl.rs", | ||
"synonyms.rs", | ||
"tasks.rs", | ||
"text_structure.rs", | ||
"transform.rs", | ||
"watcher.rs", | ||
"xpack.rs", | ||
] | ||
merged = [ | ||
'lib.rs', | ||
'params.rs', | ||
"lib.rs", | ||
"params.rs", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.