Serverless Containers Service, gRPC: ContainerService.Get
Returns the specified container.
To get the list of all available containers, make a List request.
gRPC request
rpc Get (GetContainerRequest) returns (Container)
GetContainerRequest
{
"container_id": "string"
}
Field |
Description |
container_id |
string Required field. ID of the container to return. To get a container ID make a ContainerService.List request. |
Container
{
"id": "string",
"folder_id": "string",
"created_at": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "map<string, string>",
"url": "string",
"status": "Status"
}
Field |
Description |
id |
string ID of the container. Generated at creation time. |
folder_id |
string ID of the folder that the container belongs to. |
created_at |
Creation timestamp for the container. |
name |
string Name of the container. The name is unique within the folder. |
description |
string Description of the container. |
labels |
object (map<string, string>) Container labels as |
url |
string URL that needs to be requested to call the container. |
status |
enum Status Status of the container.
|