This project has retired. For details please refer to its Attic page.
Falcon - GET api/extension/enumerate

GET api/extension/enumerate

Description

Get list of the supported extensions.

Parameters

None

Results

Total number of results and a list of extension server extensions supported.

Examples

Rest Call

GET http://localhost:15000/api/extension/enumerate

Result

{
    "totalResults":"2”,
    “extensions”: [
        {
            “name”: “Hdfs­mirroring”
            “type”: “Trusted/Provided extension”
            “description”: “This extension implements replicating arbitrary directories on HDFS from one Hadoop cluster to another Hadoop cluster.”
        },
        {
            “name”: “Hive­mirroring”
            “type”: “Trusted/Provided extension”
            “description”: “This extension implements replicating hive metadata and data from one Hadoop cluster to another Hadoop cluster.”
        }
    ]
}