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

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

  • HTTP request
  • Query parameters
  • Response
  • Connector
  • Source
  • DataStream
  • MessageQueue
  • Timer
  1. Справочник API EventRouter
  2. REST (англ.)
  3. Connector
  4. List

EventRouter Service, REST: Connector.List

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

Retrieves the list of connectors in the specified folder.

HTTP requestHTTP request

GET https://serverless-eventrouter.api.cloud.yandex.net/eventrouter/v1/connectors

Query parametersQuery parameters

Field

Description

busId

string

ID of the bus to list connectors in.

Includes only one of the fields busId, folderId.

ID of the folder or bus to list connectors in.

folderId

string

ID of the folder to list connectors in.

Includes only one of the fields busId, folderId.

ID of the folder or bus to list connectors in.

pageSize

string (int64)

The maximum number of results per response.

pageToken

string

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

filter

string

Supported fields for filter:
name
created_at

ResponseResponse

HTTP Code: 200 - OK

{
  "connectors": [
    {
      "id": "string",
      "busId": "string",
      "folderId": "string",
      "cloudId": "string",
      "createdAt": "string",
      "name": "string",
      "description": "string",
      "labels": "object",
      "source": {
        // Includes only one of the fields `dataStream`, `messageQueue`, `timer`
        "dataStream": {
          "database": "string",
          "streamName": "string",
          "consumer": "string",
          "serviceAccountId": "string"
        },
        "messageQueue": {
          "queueArn": "string",
          "serviceAccountId": "string",
          "visibilityTimeout": "string",
          "batchSize": "string",
          "pollingTimeout": "string"
        },
        "timer": {
          "cronExpression": "string",
          "timeZone": "string",
          "payload": "string"
        }
        // end of the list of possible fields
      },
      "deletionProtection": "boolean",
      "status": "string"
    }
  ],
  "nextPageToken": "string"
}

Field

Description

connectors[]

Connector

List of connectors.

nextPageToken

string

Token for getting the next page of the list of results.

ConnectorConnector

Field

Description

id

string

ID of the connector.

busId

string

ID of the bus that the connector belongs to.

folderId

string

ID of the folder that the connector resides in.

cloudId

string

ID of the cloud that the connector resides in.

createdAt

string (date-time)

Creation timestamp.

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 connector.

description

string

Description of the connector.

labels

object (map<string, string>)

Resource labels as key:value pairs.

source

Source

Source of the connector.

deletionProtection

boolean

Deletion protection.

status

enum (Status)

Status of the connector.

  • STATUS_UNSPECIFIED
  • RUNNING
  • STOPPED: disabled by user
  • RESOURCE_NOT_FOUND: source does not exist
  • PERMISSION_DENIED: service account does not have read permission on source
  • SUBJECT_NOT_FOUND: service account not found
  • DELETING: deletion in progress
  • CREATING: creation in progress

SourceSource

Field

Description

dataStream

DataStream

Includes only one of the fields dataStream, messageQueue, timer.

messageQueue

MessageQueue

Includes only one of the fields dataStream, messageQueue, timer.

timer

Timer

Includes only one of the fields dataStream, messageQueue, timer.

DataStreamDataStream

Field

Description

database

string

Required field. Stream database.
example: /ru-central1/aoegtvhtp8ob********/cc8004q4lbo6********

streamName

string

Required field. Stream name, absolute or relative.

consumer

string

Required field. Consumer name.

serviceAccountId

string

Required field. Service account which has read permission on the stream.

MessageQueueMessageQueue

Field

Description

queueArn

string

Required field. Queue ARN.
Example: yrn:yc:ymq:ru-central1:aoe***:test

serviceAccountId

string

Required field. Service account which has read access to the queue.

visibilityTimeout

string (duration)

Queue visibility timeout override.

batchSize

string (int64)

Batch size for polling.

pollingTimeout

string (duration)

Queue polling timeout.

TimerTimer

Field

Description

cronExpression

string

Required field. cron expression, with second precision

timeZone

string

time zone, e.g. Europe/Moscow

payload

string

payload to send to target

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

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