OBJECT

TDOSourceData

Describes source information about a TDO. That is, the components and processes that produced it. Each field may or may not have a value, depending on how the TDO was created.

link GraphQL Schema definition

1type TDOSourceData {
2
3# Task ID, typically of an ingestion task.
4taskId: ID
5
6# The task object.
7task: Task
8
9# Ingestion source ID
10sourceId: ID
11
12# ID of the scheduled job, if any, under which this TDO was created
13scheduledJobId: ID
14
15# ID of the engine used in the task that created this TDO
16engineId: ID
17
18# The engine used in the task that created this TDO.
19engine: Engine
20
21# ID of the cluster, if any, under which TDO belongs to
22clusterId: ID
23
24}