Managed Service for Elasticsearch API, REST: Extension.List
Returns the list of available extensions for the specified Elasticsearch cluster.
HTTP request
GET https://mdb.api.cloud.yandex.net/managed-elasticsearch/v1/clusters/{clusterId}/extensions
Path parameters
Field |
Description |
clusterId |
string Required field. ID of the cluster to list extensions in. |
Query parameters
Field |
Description |
pageSize |
string (int64) The maximum number of results per page to return. If the number of available results is larger than |
pageToken |
string Page token that can be used to iterate through multiple pages of results. To get the next page of results, set |
Response
HTTP Code: 200 - OK
{
"extensions": [
{
"name": "string",
"id": "string",
"clusterId": "string",
"version": "string",
"active": "boolean"
}
],
"nextPageToken": "string"
}
Field |
Description |
extensions[] |
Requested list of extensions. |
nextPageToken |
string The token that can be used to get the next page of results. If the number of results is larger than ListExtensionsRequest.pageSize, use the Each of the subsequent ExtensionService.List requests should use the |
Extension
Field |
Description |
name |
string Name of the extension. |
id |
string Unique ID of the extension. |
clusterId |
string ID of the Elasticsearch cluster the extension belongs to. |
version |
string (int64) Version of the extension. |
active |
boolean The flag shows whether the extension is active. |