Skip to content

Commit

Permalink
replace asciidocalypse elasticsearch-js links
Browse files Browse the repository at this point in the history
  • Loading branch information
colleenmcginnis committed Feb 28, 2025
1 parent f2e9be3 commit b587783
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion deploy-manage/security/httprest-clients-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ es-secondary-authorization: ApiKey <TOKEN> <1>
For more information about using {{security-features}} with the language specific clients, refer to:

* [Java](elasticsearch-java://reference/_basic_authentication.md)
* [JavaScript](asciidocalypse://docs/elasticsearch-js/docs/reference/connecting.md)
* [JavaScript](elasticsearch-js://reference/connecting.md)
* [.NET](asciidocalypse://docs/elasticsearch-net/docs/reference/configuration.md)
* [Perl](https://metacpan.org/pod/Search::Elasticsearch::Cxn::HTTPTiny#CONFIGURATION)
* [PHP](asciidocalypse://docs/elasticsearch-php/docs/reference/connecting.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async function run() {
run().catch(console.log)
```

When using the [client.index](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
When using the [client.index](elasticsearch-js://reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.


## Search and modify data [ec_search_and_modify_data]
Expand Down Expand Up @@ -215,7 +215,7 @@ async function update() {
update().catch(console.log)
```

This [more comprehensive list of API examples](asciidocalypse://docs/elasticsearch-js/docs/reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md).
This [more comprehensive list of API examples](elasticsearch-js://reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](elasticsearch-js://reference/api-reference.md).


## Switch to API key authentication [ec_switch_to_api_key_authentication]
Expand Down Expand Up @@ -308,5 +308,5 @@ Schema
: When the example code was run an index mapping was created automatically. The field types were selected by {{es}} based on the content seen when the first record was ingested, and updated as new fields appeared in the data. It would be more efficient to specify the fields and field types in advance to optimize performance. Refer to the Elastic Common Schema documentation and Field Type documentation when you are designing the schema for your production use cases.

Ingest
: For more advanced scenarios, this [bulk ingestion](asciidocalypse://docs/elasticsearch-js/docs/reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
: For more advanced scenarios, this [bulk ingestion](elasticsearch-js://reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.

Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ async function run() {
run().catch(console.log)
```

When using the [client.index](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
When using the [client.index](elasticsearch-js://reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.


## Search and modify data [ece_search_and_modify_data]
Expand Down Expand Up @@ -205,7 +205,7 @@ async function update() {
update().catch(console.log)
```

This [more comprehensive list of API examples](asciidocalypse://docs/elasticsearch-js/docs/reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md).
This [more comprehensive list of API examples](elasticsearch-js://reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](elasticsearch-js://reference/api-reference.md).


## Switch to API key authentication [ece_switch_to_api_key_authentication]
Expand Down Expand Up @@ -294,5 +294,5 @@ Schema
: When the example code was run an index mapping was created automatically. The field types were selected by {{es}} based on the content seen when the first record was ingested, and updated as new fields appeared in the data. It would be more efficient to specify the fields and field types in advance to optimize performance. Refer to the Elastic Common Schema documentation and Field Type documentation when you are designing the schema for your production use cases.

Ingest
: For more advanced scenarios, this [bulk ingestion](asciidocalypse://docs/elasticsearch-js/docs/reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
: For more advanced scenarios, this [bulk ingestion](elasticsearch-js://reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.

6 changes: 3 additions & 3 deletions raw-migrated-files/cloud/cloud/ec-getting-started-node-js.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async function run() {
run().catch(console.log)
```

When using the [client.index](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
When using the [client.index](elasticsearch-js://reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.


## Search and modify data [ec_search_and_modify_data]
Expand Down Expand Up @@ -197,7 +197,7 @@ async function update() {
update().catch(console.log)
```

This [more comprehensive list of API examples](asciidocalypse://docs/elasticsearch-js/docs/reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md).
This [more comprehensive list of API examples](elasticsearch-js://reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](elasticsearch-js://reference/api-reference.md).


## Switch to API key authentication [ec_switch_to_api_key_authentication]
Expand Down Expand Up @@ -290,5 +290,5 @@ Schema
: When the example code was run an index mapping was created automatically. The field types were selected by {{es}} based on the content seen when the first record was ingested, and updated as new fields appeared in the data. It would be more efficient to specify the fields and field types in advance to optimize performance. Refer to the Elastic Common Schema documentation and Field Type documentation when you are designing the schema for your production use cases.

Ingest
: For more advanced scenarios, this [bulk ingestion](asciidocalypse://docs/elasticsearch-js/docs/reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
: For more advanced scenarios, this [bulk ingestion](elasticsearch-js://reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.

2 changes: 1 addition & 1 deletion solutions/search/site-or-app/clients.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ applies_to:

- [Go](asciidocalypse://docs//go-elasticsearch/docs/reference/elasticsearch/elasticsearch-client-go-api/index.md)
- [Java](elasticsearch-java://reference/index.md)
- [JavaScript](asciidocalypse://docs/elasticsearch-js/docs/reference/index.md)
- [JavaScript](elasticsearch-js://reference/index.md)
- [.NET](asciidocalypse://docs/elasticsearch-net/docs/reference/index.md)
- [PHP](asciidocalypse://docs/elasticsearch-php/docs/reference/index.md)
- [Python](asciidocalypse://docs/elasticsearch-py/docs/reference/index.md)
Expand Down

0 comments on commit b587783

Please sign in to comment.