Cloud Functions Service, gRPC: FunctionService.List
Retrieves the list of functions in the specified folder.
gRPC request
rpc List (ListFunctionsRequest) returns (ListFunctionsResponse)
ListFunctionsRequest
{
"folderId": "string",
"pageSize": "int64",
"pageToken": "string",
"filter": "string"
}
Field |
Description |
folderId |
string Required field. ID of the folder to list functions 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 functions listed in the response. The expression must specify:
|
ListFunctionsResponse
{
"functions": [
{
"id": "string",
"folderId": "string",
"createdAt": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "string",
"httpInvokeUrl": "string",
"status": "Status"
}
],
"nextPageToken": "string"
}
Field |
Description |
functions[] |
List of functions 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 |
Function
A serverless function. For details about the concept, see Functions.
Field |
Description |
id |
string ID of the function. Generated at creation time. |
folderId |
string ID of the folder that the function belongs to. |
createdAt |
Creation timestamp for the function. |
name |
string Name of the function. The name is unique within the folder. |
description |
string Description of the function. |
labels |
string Function labels as |
httpInvokeUrl |
string URL that needs to be requested to invoke the function. |
status |
enum Status Status of the function.
|