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

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

  • HTTP request
  • Path parameters
  • Response
  1. Справочник API Functions
  2. REST (англ.)
  3. Function
  4. Get

Cloud Functions Service, REST: Function.Get

Статья создана
Yandex Cloud
Обновлена 17 декабря 2024 г.
  • HTTP request
  • Path parameters
  • Response

Returns the specified function.

To get the list of all available functions, make a List request.

HTTP requestHTTP request

GET https://serverless-functions.api.cloud.yandex.net/functions/v1/functions/{functionId}

Path parametersPath parameters

Field

Description

functionId

string

Required field. ID of the function to return.

To get a function ID make a FunctionService.List request.

ResponseResponse

HTTP Code: 200 - OK

{
  "id": "string",
  "folderId": "string",
  "createdAt": "string",
  "name": "string",
  "description": "string",
  "labels": "object",
  "httpInvokeUrl": "string",
  "status": "string"
}

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

string (date-time)

Creation timestamp for the function.

String in RFC3339 text format. The range of possible values is from
0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z, i.e. from 0 to 9 digits for fractions of a second.

To work with values in this field, use the APIs described in the
Protocol Buffers reference.
In some languages, built-in datetime utilities do not support nanosecond precision (9 digits).

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.

httpInvokeUrl

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.

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

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