IoT Core Service, gRPC: RegistryService.ListDataStreamExports
Retrieves the list of YDS exports for the specified registry.
gRPC request
rpc ListDataStreamExports (ListDataStreamExportsRequest) returns (ListDataStreamExportsResponse)
ListDataStreamExportsRequest
{
"registryId": "string"
}
Field |
Description |
registryId |
string Required field. ID of the registry to list YDS exports in. To get a registry ID make a RegistryService.List request. |
ListDataStreamExportsResponse
{
"dataStreamExports": [
{
"id": "string",
"name": "string",
"registryId": "string",
"mqttTopicFilter": "string",
"database": "string",
"stream": "string",
"serviceAccountId": "string",
"createdAt": "google.protobuf.Timestamp"
}
]
}
Field |
Description |
dataStreamExports[] |
List of YDS exports for the specified registry. |
DataStreamExport
A Yandex Data Streams export.
Field |
Description |
id |
string ID of the YDS export. |
name |
string Name of the YDS export. |
registryId |
string ID of the registry that the YDS export belongs to. |
mqttTopicFilter |
string MQTT topic whose messages export to YDS. |
database |
string YDS database. |
stream |
string YDS stream name. |
serviceAccountId |
string ID of the service account which has permission to write to data stream. |
createdAt |
Creation timestamp. |