npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hk_atlas_rest_api

v0.0.1

Published

Atlas_exposes_a_variety_of_REST_endpoints_to_work_with_types_entities_lineage_and_data_discovery_

Downloads

1

Readme

atlas_rest_api

AtlasRestApi - JavaScript client for atlas_rest_api Atlas exposes a variety of REST endpoints to work with types, entities, lineage and data discovery. This SDK is automatically generated by the Swagger Codegen project:

  • API version: 0.9-incubating-SNAPSHOT
  • Package version: 0.9-incubating-SNAPSHOT
  • Build package: io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install atlas_rest_api --save
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

Finally, switch to the directory you want to use your atlas_rest_api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('atlas_rest_api') in javascript files from the directory you ran the last command above from.

git

If the library is hosted at a git repository, e.g. https://github.com/YOUR_USERNAME/atlas_rest_api then install it via:

    npm install YOUR_USERNAME/atlas_rest_api --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually use this library):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var AtlasRestApi = require('atlas_rest_api');

var api = new AtlasRestApi.DiscoveryRESTApi()

var opts = { 
  'classification': "classification_example", // {String} limit the result to only entities tagged with the given classification or or its sub-types
  'limit': 56, // {Number} limit the result set to only include the specified number of entries
  'offset': 56, // {Number} start offset of the result set (useful for pagination)
  'query': "query_example", // {String} Fulltext query
  'typeName': "typeName_example" // {String} limit the result to only entities of specified type or its sub-types
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceDiscoveryRESTSearchUsingBasicGET(opts, callback);

Documentation for API Endpoints

All URIs are relative to https://localhost:21000/api/atlas/

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- AtlasRestApi.DiscoveryRESTApi | resourceDiscoveryRESTSearchUsingBasicGET | GET /v2/search/basic | Retrieve data for the specified fulltext query. AtlasRestApi.DiscoveryRESTApi | resourceDiscoveryRESTSearchUsingDSLGET | GET /v2/search/dsl | Retrieve data for the specified DSL. AtlasRestApi.DiscoveryRESTApi | resourceDiscoveryRESTSearchUsingFullTextGET | GET /v2/search/fulltext | Retrieve data for the specified fulltext query. AtlasRestApi.EntityRESTApi | resourceEntityRESTAddClassificationPOST | POST /v2/entity/bulk/classification | Bulk API to associate a tag to multiple entities. AtlasRestApi.EntityRESTApi | resourceEntityRESTAddClassificationsPOST | POST /v2/entity/guid/{guid}/classifications | Adds classifications to an existing entity represented by a guid. AtlasRestApi.EntityRESTApi | resourceEntityRESTCreateOrUpdatePOST | POST /v2/entity | Create new entity or update existing entity in Atlas. AtlasRestApi.EntityRESTApi | resourceEntityRESTCreateOrUpdatePOST_0 | POST /v2/entity/bulk | Bulk API to create new entities or update existing entities in Atlas. AtlasRestApi.EntityRESTApi | resourceEntityRESTDeleteByGuidDELETE | DELETE /v2/entity/guid/{guid} | Delete an entity identified by its GUID. AtlasRestApi.EntityRESTApi | resourceEntityRESTDeleteByGuidsDELETE | DELETE /v2/entity/bulk | Bulk API to delete list of entities identified by its GUIDs. AtlasRestApi.EntityRESTApi | resourceEntityRESTDeleteByUniqueAttributeDELETE | DELETE /v2/entity/uniqueAttribute/type/{typeName} | Delete an entity identified by its type and unique attributes. AtlasRestApi.EntityRESTApi | resourceEntityRESTDeleteClassificationDELETE | DELETE /v2/entity/guid/{guid}/classification/{classificationName} | Deletes a given classification from an existing entity represented by a guid. AtlasRestApi.EntityRESTApi | resourceEntityRESTGetByGuidsGET | GET /v2/entity/bulk | Bulk API to retrieve list of entities identified by its GUIDs. AtlasRestApi.EntityRESTApi | resourceEntityRESTGetByIdGET | GET /v2/entity/guid/{guid} | Fetch complete definition of an entity given its GUID. AtlasRestApi.EntityRESTApi | resourceEntityRESTGetByUniqueAttributesGET | GET /v2/entity/uniqueAttribute/type/{typeName} | Fetch complete definition of an entity given its type and unique attribute. AtlasRestApi.EntityRESTApi | resourceEntityRESTGetClassificationGET | GET /v2/entity/guid/{guid}/classification/{classificationName} | Gets the list of classifications for a given entity represented by a guid. AtlasRestApi.EntityRESTApi | resourceEntityRESTGetClassificationsGET | GET /v2/entity/guid/{guid}/classifications | Gets the list of classifications for a given entity represented by a guid. AtlasRestApi.EntityRESTApi | resourceEntityRESTPartialUpdateEntityAttrByGuidPUT | PUT /v2/entity/guid/{guid} | Entity Partial Update - Add/Update entity attribute identified by its GUID. AtlasRestApi.EntityRESTApi | resourceEntityRESTPartialUpdateEntityByUniqueAttrsPUT | PUT /v2/entity/uniqueAttribute/type/{typeName} | Entity Partial Update - Allows a subset of attributes to be updated on an entity which is identified by its type and unique attribute eg: Referenceable. AtlasRestApi.LineageRESTApi | resourceLineageRESTGetLineageGraphGET | GET /v2/lineage/{guid} | Returns lineage info about entity. AtlasRestApi.TypesRESTApi | resourceTypesRESTCreateAtlasTypeDefsPOST | POST /v2/types/typedefs | Bulk create APIs for all atlas type definitions, only new definitions will be created. AtlasRestApi.TypesRESTApi | resourceTypesRESTDeleteAtlasTypeDefsDELETE | DELETE /v2/types/typedefs | Bulk delete API for all types. AtlasRestApi.TypesRESTApi | resourceTypesRESTGetAllTypeDefsGET | GET /v2/types/typedefs | Bulk retrieval API for retrieving all type definitions in Atlas. AtlasRestApi.TypesRESTApi | resourceTypesRESTGetClassificationDefByGuidGET | GET /v2/types/classificationdef/guid/{guid} | Get the classification definition for the given guid. AtlasRestApi.TypesRESTApi | resourceTypesRESTGetClassificationDefByNameGET | GET /v2/types/classificationdef/name/{name} | Get the classification definition by it's name (unique). AtlasRestApi.TypesRESTApi | resourceTypesRESTGetEntityDefByGuidGET | GET /v2/types/entitydef/guid/{guid} | Get the Entity definition for the given guid. AtlasRestApi.TypesRESTApi | resourceTypesRESTGetEntityDefByNameGET | GET /v2/types/entitydef/name/{name} | Get the entity definition by it's name (unique). AtlasRestApi.TypesRESTApi | resourceTypesRESTGetEnumDefByGuidGET | GET /v2/types/enumdef/guid/{guid} | Get the enum definition for the given guid. AtlasRestApi.TypesRESTApi | resourceTypesRESTGetEnumDefByNameGET | GET /v2/types/enumdef/name/{name} | Get the enum definition by it's name (unique). AtlasRestApi.TypesRESTApi | resourceTypesRESTGetStructDefByGuidGET | GET /v2/types/structdef/guid/{guid} | Get the struct definition for the given guid. AtlasRestApi.TypesRESTApi | resourceTypesRESTGetStructDefByNameGET | GET /v2/types/structdef/name/{name} | Get the struct definition by it's name (unique). AtlasRestApi.TypesRESTApi | resourceTypesRESTGetTypeDefByGuidGET | GET /v2/types/typedef/guid/{guid} | AtlasRestApi.TypesRESTApi | resourceTypesRESTGetTypeDefByNameGET | GET /v2/types/typedef/name/{name} | Get type definition by it's name. AtlasRestApi.TypesRESTApi | resourceTypesRESTGetTypeDefHeadersGET | GET /v2/types/typedefs/headers | Bulk retrieval API for all type definitions returned as a list of minimal information header. AtlasRestApi.TypesRESTApi | resourceTypesRESTUpdateAtlasTypeDefsPUT | PUT /v2/types/typedefs | Bulk update API for all types, changes detected in the type definitions would be persisted.

Documentation for Models

Documentation for Authorization

All endpoints do not require authorization.