Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Доступны в регионе
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • Машинное обучение
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Партнёрская программа
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Истории успеха
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Документация
  • Блог
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»
Yandex Serverless Integrations
  • Правила тарификации
  • Справочник Terraform
    • Аутентификация в API
      • Overview
        • Overview
        • Start
        • Stop
        • Terminate
        • Get
        • GetHistory
        • List
  • История изменений

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

  • gRPC request
  • GetExecutionRequest
  • GetExecutionResponse
  • Execution
  • ExecutionInput
  • ExecutionResult
  • ExecutionError
  1. Справочник API Workflows
  2. gRPC (англ.)
  3. Execution
  4. Get

Workflows Service, gRPC: ExecutionService.Get

Статья создана
Yandex Cloud
Обновлена 26 ноября 2024 г.
  • gRPC request
  • GetExecutionRequest
  • GetExecutionResponse
  • Execution
  • ExecutionInput
  • ExecutionResult
  • ExecutionError

Retrieves specified Workflow execution.

gRPC requestgRPC request

rpc Get (GetExecutionRequest) returns (GetExecutionResponse)

GetExecutionRequestGetExecutionRequest

{
  "execution_id": "string"
}

Field

Description

execution_id

string

Required field. ID of the Workflow execution.

GetExecutionResponseGetExecutionResponse

{
  "execution": {
    "id": "string",
    "workflow_id": "string",
    "input": {
      // Includes only one of the fields `input_json`
      "input_json": "string"
      // end of the list of possible fields
    },
    "result": {
      // Includes only one of the fields `result_json`
      "result_json": "string"
      // end of the list of possible fields
    },
    "error": {
      "message": "string",
      "error_code": "string"
    },
    "status": "Status",
    "started_at": "google.protobuf.Timestamp",
    "duration": "google.protobuf.Duration"
  }
}

Field

Description

execution

Execution

Workflow execution details.

ExecutionExecution

Field

Description

id

string

ID of the Workflow execution. Generated at creation time.

workflow_id

string

ID of the Workflow.

input

ExecutionInput

Input data for the Workflow execution.

result

ExecutionResult

Result of the Workflow execution.

error

ExecutionError

Error details, in case Workflow execution failed.

status

enum Status

Status of the Workflow execution

  • STATUS_UNSPECIFIED
  • QUEUED: Workflow execution is being queued.
  • RUNNING: Workflow execution is running.
  • PAUSED: Workflow execution is being paused.
  • STOPPED: Workflow execution is stopped.
  • FAILED: Workflow execution is failed.
  • FINISHED: Workflow execution is finished.

started_at

google.protobuf.Timestamp

Start timestamp for the Workflow execution.

duration

google.protobuf.Duration

Duration of the Workflow execution.

ExecutionInputExecutionInput

Field

Description

input_json

string

JSON input data for the Workflow execution.

Includes only one of the fields input_json.

ExecutionResultExecutionResult

Field

Description

result_json

string

JSON result of the Workflow execution.

Includes only one of the fields result_json.

ExecutionErrorExecutionError

Field

Description

message

string

Error message of the Workflow execution.

error_code

string

Error code of the Workflow execution.

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

Предыдущая
Terminate
Следующая
GetHistory
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»