Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Популярные
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • Машинное обучение
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Облако для интеграторов
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Контент-программа
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Истории успеха
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Документация
  • Блог
Проект Яндекса
© 2025 ООО «Яндекс.Облако»
Yandex Cloud Functions
  • Сопоставление с другими сервисами Yandex Cloud
  • Инструменты
  • Правила тарификации
  • Управление доступом
  • Справочник Terraform
    • Аутентификация в API
      • Overview
        • Overview
        • Get
        • List
        • Create
        • Update
        • Delete
        • GetVersion
        • GetFunctionVersion
        • GetVersionByTag
        • GetFunctionVersionByTag
        • ListVersions
        • ListFunctionVersions
        • DeleteVersion
        • SetTag
        • RemoveTag
        • ListTagHistory
        • ListFunctionTagHistory
        • CreateVersion
        • CreateFunctionVersion
        • ListRuntimes
        • ListOperations
        • ListAccessBindings
        • SetAccessBindings
        • UpdateAccessBindings
        • ListScalingPolicies
        • SetScalingPolicy
        • RemoveScalingPolicy
  • Метрики Monitoring
  • Аудитные логи Audit Trails
  • История изменений
  • Вопросы и ответы
  • Обучающие курсы

В этой статье:

  • gRPC request
  • ListFunctionsRequest
  • ListFunctionsResponse
  • Function
  1. Справочник API Functions
  2. gRPC (англ.)
  3. Function
  4. List

Cloud Functions Service, gRPC: FunctionService.List

Статья создана
Yandex Cloud
Обновлена 17 декабря 2024 г.
  • gRPC request
  • ListFunctionsRequest
  • ListFunctionsResponse
  • Function

Retrieves the list of functions in the specified folder.

gRPC requestgRPC request

rpc List (ListFunctionsRequest) returns (ListFunctionsResponse)

ListFunctionsRequestListFunctionsRequest

{
  "folder_id": "string",
  "page_size": "int64",
  "page_token": "string",
  "filter": "string"
}

Field

Description

folder_id

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.

page_size

int64

The maximum number of results per page to return. If the number of available
results is larger than pageSize, the service returns a ListFunctionsResponse.next_page_token
that can be used to get the next page of results in subsequent list requests.

Default value: 100.

page_token

string

Page token. To get the next page of results, set pageToken to the
ListFunctionsResponse.next_page_token returned by a previous list request.

filter

string

A filter expression that filters functions listed in the response.

The expression must specify:

  1. The field name. Currently filtering can only be applied to the Function.name field.
  2. An = operator.
  3. The value in double quotes ("). Must be 3-63 characters long and match the regular expression [a-z][-a-z0-9]{1,61}[a-z0-9].
    Example of a filter: name="my-function".

ListFunctionsResponseListFunctionsResponse

{
  "functions": [
    {
      "id": "string",
      "folder_id": "string",
      "created_at": "google.protobuf.Timestamp",
      "name": "string",
      "description": "string",
      "labels": "map<string, string>",
      "http_invoke_url": "string",
      "status": "Status"
    }
  ],
  "next_page_token": "string"
}

Field

Description

functions[]

Function

List of functions in the specified folder.

next_page_token

string

Token for getting the next page of the list. If the number of results is greater than
the specified ListFunctionsRequest.page_size, use nextPageToken as the value
for the ListFunctionsRequest.page_token parameter in the next list request.

Each subsequent page will have its own nextPageToken to continue paging through the results.

FunctionFunction

A serverless function. For details about the concept, see Functions.

Field

Description

id

string

ID of the function. Generated at creation time.

folder_id

string

ID of the folder that the function belongs to.

created_at

google.protobuf.Timestamp

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

object (map<string, string>)

Function labels as key:value pairs.

http_invoke_url

string

URL that needs to be requested to invoke the function.

status

enum Status

Status of the function.

  • STATUS_UNSPECIFIED
  • CREATING: Function is being created.
  • ACTIVE: Function is ready to be invoked.
  • DELETING: Function is being deleted.
  • ERROR: Function failed.

Была ли статья полезна?

Предыдущая
Get
Следующая
Create
Проект Яндекса
© 2025 ООО «Яндекс.Облако»