Serverless Containers Service, gRPC: ContainerService.List
Retrieves the list of containers in the specified folder.
gRPC request
rpc List (ListContainersRequest) returns (ListContainersResponse)
ListContainersRequest
{
"folderId": "string",
"pageSize": "int64",
"pageToken": "string",
"filter": "string"
}
Field |
Description |
folderId |
string Required field. ID of the folder to list containers in. To get a folder ID make a yandex.cloud.resourcemanager.v1.FolderService.List request. |
pageSize |
int64 The maximum number of results per page to return. If the number of available Default value: 100. |
pageToken |
string Page token. To get the next page of results, set |
filter |
string A filter expression that filters containers listed in the response. The expression must specify:
|
ListContainersResponse
{
"containers": [
{
"id": "string",
"folderId": "string",
"createdAt": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "string",
"url": "string",
"status": "Status"
}
],
"nextPageToken": "string"
}
Field |
Description |
containers[] |
List of containers in the specified folder. |
nextPageToken |
string Token for getting the next page of the list. If the number of results is greater than Each subsequent page will have its own |
Container
Field |
Description |
id |
string ID of the container. Generated at creation time. |
folderId |
string ID of the folder that the container belongs to. |
createdAt |
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 |
string Container labels as |
url |
string URL that needs to be requested to call the container. |
status |
enum Status Status of the container.
|