Managed Service for OpenSearch API, gRPC: ExtensionService.Get
Статья создана
Обновлена 18 апреля 2025 г.
Returns the specified extension of OpenSearch cluster.
gRPC request
rpc Get (GetExtensionRequest) returns (Extension)
GetExtensionRequest
{
"cluster_id": "string",
"extension_id": "string"
}
Field |
Description |
cluster_id |
string Required field. Required. ID of the cluster. |
extension_id |
string Required field. Required. ID of the extension to return. |
Extension
{
"name": "string",
"id": "string",
"cluster_id": "string",
"version": "int64",
"active": "bool",
"type": "ExtensionType"
}
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
|