Compute Cloud API, gRPC: GpuClusterService.Get
Returns the specified GPU cluster.
To get the list of available GPU clusters, make a List request.
gRPC request
rpc Get (GetGpuClusterRequest) returns (GpuCluster)
GetGpuClusterRequest
{
"gpu_cluster_id": "string"
}
Field |
Description |
gpu_cluster_id |
string ID of the GPU cluster to return. To get a GPU cluster ID, make a GpuClusterService.List request. |
GpuCluster
{
"id": "string",
"folder_id": "string",
"created_at": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "map<string, string>",
"status": "Status",
"zone_id": "string",
"interconnect_type": "GpuInterconnectType"
}
A GPU cluster. For details about the concept, see documentation.
Field |
Description |
id |
string ID of GPU cluster. |
folder_id |
string ID of the folder that the GPU cluster belongs to. |
created_at |
Creation timestamp. |
name |
string Name of the GPU cluster. The name is unique within the folder. |
description |
string Description of the GPU cluster. |
labels |
object (map<string, string>) GPU cluster labels as |
status |
enum Status Status of the GPU cluster.
|
zone_id |
string ID of the availability zone where the GPU cluster resides. |
interconnect_type |
enum GpuInterconnectType Type of interconnect used for this GPU cluster.
|