Managed Service for OpenSearch API, gRPC: ExtensionService.List
Returns the list of available extensions for the specified OpenSearch 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. Required. ID of the cluster to list extensions in. |
page_size |
int64 The maximum number of results per page that should be returned. If the number of available |
page_token |
string Page token. Set |
ListExtensionsResponse
{
"extensions": [
{
"name": "string",
"id": "string",
"cluster_id": "string",
"version": "int64",
"active": "bool",
"type": "ExtensionType"
}
],
"next_page_token": "string"
}
Field |
Description |
extensions[] |
Requested list of extensions. |
next_page_token |
string This token allows you to get the next page of results for ListBackups requests, |
Extension
Field |
Description |
name |
string Name of the extension. |
id |
string Extension unique ID |
cluster_id |
string ID of the OpenSearch cluster the extension belongs to. |
version |
int64 Extension version |
active |
bool Flag is extension active now |
type |
enum ExtensionType Extension type
|