Managed Service for Elasticsearch API, gRPC: ExtensionService.Get
Статья создана
Обновлена 17 октября 2024 г.
Returns the specified extension of Elasticsearch cluster.
gRPC request
rpc Get (GetExtensionRequest) returns (Extension)
GetExtensionRequest
{
"clusterId": "string",
"extensionId": "string"
}
Field |
Description |
clusterId |
string Required field. ID of the cluster. |
extensionId |
string Required field. ID of the extension to return. |
Extension
{
"name": "string",
"id": "string",
"clusterId": "string",
"version": "int64",
"active": "bool"
}
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 |
int64 Version of the extension. |
active |
bool The flag shows whether the extension is active. |