Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

All methods or endpoints described in this API have a base URL (typically http://<host>:11015 or https://<host>:10443) that precedes the resource identifier, as described in the Microservices Conventions. These methods return a status code, as listed in the Microservices the Microservices Status Codes.

Get Hub Catalog

To retrieve a list of available packages, submit an HTTP GET request:

...

Code Block
[
  {
    "name": "access-log",
    "version": "1.0.0",
    "description": "Sample access logs in Combined Log Format (CLF)",
    "label": "Access Log Sample",
    "author": "Cask",
    "org": "Cask Data, Inc.",
    "cdapVersion": "[6.2.0,6.3.0)",
    "created": 1473901763,
    "beta": false,
    "categories": [ "datapack" ]
  },
  {
    "name": "bulk-data-transfer",
    "version": "1.0.0",
    "description": "Moving data from structured data source such as a traditional relational
                  database into Hadoop is very common in building Data Lakes. This
                  data application allows you to set-up periodic full data dumps from
                  RDBMS into Hadoop cluster. Data on Hadoop is stored as DB table
                  snapshot. Supports other relational databases.",
    "label": "Bulk Data Transfer",
    "author": "Cask",
    "org": "Cask Data, Inc.",
    "cdapVersion": "[6.2.0,6.3.0)",
    "created": 1473901763,
    "beta": false,
    "license": "license.txt",
    "categories": [ "usecase" ]
  },
  ...
]

Get a Package Specification

To retrieve a package specification, submit an HTTP GET request:

...