This project has retired. For details please refer to its Attic page.
Falcon - GET /api/entities/dependencies/:entity-type/:entity-name

GET /api/entities/dependencies/:entity-type/:entity-name

Description

Get dependencies of the entity.

Parameters

  • :entity-type can be cluster, feed or process.
  • :entity-name is name of the entity.

Results

Dependenciess of the entity.

Examples

Rest Call

GET http://localhost:15000/api/entities/dependencies/process/SampleProcess

Result

{
    "entity": [
        {
            "name": "SampleInput",
            "type": "feed",
            "tag": [Input]
        },
        {
            "name": "SampleOutput",
            "type": "feed"
            "tag": [Output]
        },
        {
            "name": "primary-cluster",
            "type": "cluster"
        }
    ]
}