-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds various client docs within Opensearch client (#204)
Signed-off-by: Jay Mehta <[email protected]> Signed-off-by: Jay Mehta <[email protected]> Signed-off-by: Jay Mehta <[email protected]> Signed-off-by: Jay Mehta <[email protected]> Co-authored-by: Jay Mehta <[email protected]>
- Loading branch information
Showing
14 changed files
with
90 additions
and
3 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 |
---|---|---|
|
@@ -7,5 +7,6 @@ titlesonly: | |
maxdepth: 2 | ||
--- | ||
api-ref/client | ||
api-ref/* | ||
``` |
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,5 +1,34 @@ | ||
# client | ||
# Clients | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.OpenSearch | ||
```{toctree} | ||
--- | ||
glob: | ||
titlesonly: | ||
maxdepth: 1 | ||
--- | ||
clients/opensearch_client | ||
``` | ||
|
||
## Clients within Opensearch | ||
|
||
OpenSearch Client includes several clients: | ||
|
||
```{toctree} | ||
--- | ||
glob: | ||
titlesonly: | ||
maxdepth: 1 | ||
--- | ||
clients/cat_client | ||
clients/cluster_client | ||
clients/dangling_indices_client | ||
clients/ingest_client | ||
clients/indices_client | ||
clients/nodes_client | ||
clients/remote_client | ||
clients/snapshot_client | ||
clients/tasks_client | ||
clients/features_client | ||
``` |
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 @@ | ||
# Compact and aligned text (CAT) Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.cat.CatClient | ||
``` |
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 @@ | ||
# Cluster Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.cluster.ClusterClient | ||
``` |
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 @@ | ||
# Dangling Indices Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.dangling_indices.DanglingIndicesClient | ||
``` |
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 @@ | ||
# Features Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.features.FeaturesClient | ||
``` |
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 @@ | ||
# Indices Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.indices.IndicesClient | ||
``` |
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 @@ | ||
# Ingest Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.ingest.IngestClient | ||
``` |
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 @@ | ||
# Nodes Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.nodes.NodesClient | ||
``` |
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 @@ | ||
# OpenSearch Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.OpenSearch | ||
``` |
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 @@ | ||
# Remote Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.remote.RemoteClient | ||
``` |
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 @@ | ||
# Snapshot Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.snapshot.SnapshotClient | ||
``` |
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 @@ | ||
# Tasks Client | ||
|
||
```{eval-rst} | ||
.. autoclass:: opensearchpy.client.tasks.TasksClient | ||
``` |
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