Managed Service for Elasticsearch API, gRPC: ExtensionService.List
Returns the list of available extensions for the specified Elasticsearch cluster.
gRPC request
rpc List (ListExtensionsRequest) returns (ListExtensionsResponse)
ListExtensionsRequest
{
"cluster_id": "string",
"page_size": "int64",
"page_token": "string"
}
Field |
Description |
cluster_id |
string Required field. ID of the cluster to list extensions in. |
page_size |
int64 The maximum number of results per page to return. If the number of available results is larger than |
page_token |
string Page token that can be used to iterate through multiple pages of results. To get the next page of results, set |
ListExtensionsResponse
{
"extensions": [
{
"name": "string",
"id": "string",
"cluster_id": "string",
"version": "int64",
"active": "bool"
}
],
"next_page_token": "string"
}
Field |
Description |
extensions[] |
Requested list of extensions. |
next_page_token |
string The token that can be used to get the next page of results. If the number of results is larger than ListExtensionsRequest.page_size, 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. |
cluster_id |
string ID of the Elasticsearch cluster the extension belongs to. |
version |
int64 Version of the extension. |
active |
bool The flag shows whether the extension is active. |