-
Notifications
You must be signed in to change notification settings - Fork 1.2k
[Backport 8.7][DOCS] Adds getting started content based on the template #7770
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,134 @@ | ||
[[getting-started-net]] | ||
== Getting started | ||
|
||
This page guides you through the installation process of the .NET client, shows | ||
you how to instantiate the client, and how to perform basic Elasticsearch | ||
operations with it. | ||
|
||
[discrete] | ||
=== Requirements | ||
|
||
* (...) | ||
|
||
[discrete] | ||
=== Installation | ||
|
||
To install the latest version of the client, run the following command: | ||
|
||
[source,shell] | ||
-------------------------- | ||
|
||
-------------------------- | ||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
Refer to the <<installation>> page to learn more. | ||
|
||
|
||
[discrete] | ||
=== Connecting | ||
|
||
You can connect to the Elastic Cloud using an API key and the Elasticsearch | ||
endpoint. | ||
|
||
[source,net] | ||
---- | ||
|
||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
|
||
Your Elasticsearch endpoint can be found on the **My deployment** page of your | ||
deployment: | ||
|
||
image::images/es-endpoint.jpg[alt="Finding Elasticsearch endpoint",align="center"] | ||
|
||
You can generate an API key on the **Management** page under Security. | ||
|
||
image::images/create-api-key.png[alt="Create API key",align="center"] | ||
|
||
For other connection options, refer to the <<connecting>> section. | ||
|
||
|
||
[discrete] | ||
=== Operations | ||
|
||
Time to use Elasticsearch! This section walks you through the basic, and most | ||
important, operations of Elasticsearch. For more operations and more advanced | ||
examples, refer to the <<examples>> page. | ||
|
||
|
||
[discrete] | ||
==== Creating an index | ||
|
||
This is how you create the `my_index` index: | ||
|
||
[source,net] | ||
---- | ||
|
||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
|
||
|
||
[discrete] | ||
==== Indexing documents | ||
|
||
This is a simple way of indexing a document: | ||
|
||
[source,net] | ||
---- | ||
|
||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
|
||
|
||
[discrete] | ||
==== Getting documents | ||
|
||
You can get documents by using the following code: | ||
|
||
[source,net] | ||
---- | ||
|
||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
|
||
|
||
[discrete] | ||
==== Searching documents | ||
|
||
This is how you can create a single match query with the .NET client: | ||
|
||
[source,net] | ||
---- | ||
|
||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
|
||
|
||
[discrete] | ||
==== Updating documents | ||
|
||
This is how you can update a document, for example to add a new field: | ||
|
||
[source,net] | ||
---- | ||
|
||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
|
||
|
||
[discrete] | ||
==== Deleting documents | ||
|
||
[source,net] | ||
---- | ||
|
||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
|
||
|
||
[discrete] | ||
==== Deleting an index | ||
|
||
[source,net] | ||
---- | ||
|
||
szabosteve marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
|
||
|
||
[discrete] | ||
== Further reading | ||
|
||
* Refer to the <<recommendations>> page to learn more about how to use the | ||
client the most efficiently. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.