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

@nutanix-api/aiops-js-client

v4.0.3-alpha.2

Published

The Javascript client for Nutanix Aiops Versioned APIs is designed for Javascript client application developers offering them simple and flexible access to APIs that manage infrastructure on-premises and in the cloud seamlessly through AIOps features such

Downloads

6

Readme

Javascript Client For Nutanix Aiops Versioned APIs

The Javascript client for Nutanix Aiops Versioned APIs is designed for Javascript client application developers offering them simple and flexible access to APIs that manage infrastructure on-premises and in the cloud seamlessly through AIOps features such as Analysis, Reporting, Capacity Planning, What if Analysis, VM Rightsizing, Troubleshooting, App Discovery, Broad Observability, and Ops Automation through Playbooks.

Features

  • Invoke Nutanix APIs with a simple interface.
  • Handle Authentication seamlessly.
  • Reduce boilerplate code implementation.
  • Use standard methods for installation.

Version

  • API version: v4.0.a2
  • Package version: 4.0.3-alpha.2

Requirements.

Node.JS 14, 15, 16, 17 and 18 are fully supported and tested.

Installation & Usage

Installation

This library is distributed on npm. In order to add it as a dependency, run the following command:

$ npm install @nutanix-api/aiops-js-client

Configuration

The javascript client for Nutanix Aiops Versioned APIs can be configured with the following parameters

| Parameter | Description | Required | Default Value| |-----------|------------------------------------------------------------------------------|---------- |--------------| | scheme | URI scheme for connecting to the cluster (HTTP or HTTPS using SSL/TLS) | No | https | | host | IPv4/IPv6 address or FQDN of the cluster to which the client will connect to | Yes | N/A | | port | Port on the cluster to which the client will connect to | No | 9440 | | username | Username to connect to a cluster | Yes | N/A | | password | Password to connect to a cluster | Yes | N/A | | debug | Runs the client in debug mode if specified | No | False | | verifySsl | Verify SSL certificate of cluster, the client will connect to | No | True | | maxRetryAttempts| Maximum number of retry attempts while connecting to the cluster | No | 5 | | retryInterval| Interval in milliseconds at which retry attempts are made | No | 3000 | | loggerFile | File location to which debug logs are written to | No | N/A | | connectTimeout | Connection timeout in milliseconds for all operations | No | 30000 | | readTimeout | Read timeout in milliseconds for all operations | No | 30000 |

This module can be used in the CommonJS (CJS) , ECMAScript6(ES6) and Universal Module Definition(UMD) syntax While using the module in browser frameworks like React or Vue.JS , you can use import/export. Older Node.js versions can continue to use the require ().

For CommonJs:

const sdk = require("@nutanix-api/aiops-js-client/dist/lib/index");
let client = new sdk.ApiClient();

For ES6 modules:

import ApiClient from "@nutanix-api/aiops-js-client/dist/es/ApiClient";

Sample Configuration

import ApiClient from "@nutanix-api/aiops-js-client/dist/es/ApiClient";

let client = new ApiClient();
client.host = '10.19.50.27'; // IPv4/IPv6 address or FQDN of the cluster
client.port = 9440; // Port to which to connect to
client.username = 'admin'; // UserName to connect to the cluster
client.password = 'password'; // Password to connect to the cluster

Authentication

Nutanix APIs currently support HTTP Basic Authentication only, and the client can be configured using the username and password parameters to send Basic headers along with every request.

Retry Mechanism

The client can be configured to retry requests that fail with the following status codes. The numbers of seconds before which the next retry is attempted is determined by the retryInterval:

import ApiClient from "@nutanix-api/aiops-js-client/dist/es/ApiClient";

let client = new ApiClient();
client.maxRetryAttempts = 5 // Max retry attempts while reconnecting on a loss of connection
client.retryInterval = 5000 // Interval in ms to use during retry attempts

Usage

Invoking an operation

// this sample code is not usable directly for real use-case

import ApiClient from "@nutanix-api/aiops-js-client/dist/es/ApiClient";
import SampleApi from "@nutanix-api/aiops-js-client/dist/es/apis/sample-endpoints";
// Configure the client
// ...
let client = new ApiClient();
// Initialize the API
let sampleApi = new SampleApi(client);
const extId = '66673023168b486898d76bc27e5ce9c2'
// Get a sample group by UUID.

sampleApi.getSampleByExtId(extId).then(({data, response}) => {
    console.log(`API returned the following status code: ${response.status}`);
}).catch((err) =>  {
    console.log(`Error is: ${err}`);
});

Request Options

The library provides the ability to specify additional options that can be applied directly on the 'ApiClient' object used to make network calls to the API. The library also provides a mechanism to specify operation specific headers.

Client headers

The 'ApiClient' can be configured to send additional headers on each request.

import ApiClient from "@nutanix-api/aiops-js-client/dist/es/ApiClient";

let client = new ApiClient();
client.addDefaultHeader('Accept-Encoding','gzip, deflate, br');

You can also modify the headers sent with each individual operation:

Operation specific headers

Nutanix APIs require that concurrent updates are protected using ETag headers. This would mean that the ETag header received in the response of a fetch (GET) operation should be used as an If-Match header for the modification (PUT) operation.

// this sample code is not usable directly for real use-case

import ApiClient from "@nutanix-api/aiops-js-client/dist/es/ApiClient";
import SampleApi from "@nutanix-api/aiops-js-client/dist/es/apis/sample-endpoints";
// Configure the client
// ...
let client = new ApiClient();
// Initialize the API
let sampleApi = new SampleApi(client);
const extId = '66673023168b486898d76bc27e5ce9c2'
// Get a sample group by UUID.
sampleApi.getSampleByExtId(extId).then(({data, response}) => {
console.log(`API returned the following status code: ${response.status}`);
// Extract E-Tag Header
let etagValue = ApiClient.getEtag(data)
let body = data.getData();
// initialize/change parameters for update
// Update a given sample by UUID.
sampleApi.updateSampleByExtId(extId, body, {"If-Match" : etagValue}).then(({data, response}) => {
    console.log(`API returned the following status code: ${response.status}`);
}).catch((err) => {
    console.log(`Error is: ${err}`);
});

List Operations

List Operations for Nutanix APIs support pagination, filtering, sorting and projections. The table below details the parameters that can be used to set the options for pagination etc.

| Parameter | Description |-----------|----------------------------------------------------------------------------------| | $page | specifies the page number of the result set. Must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range will lead to no results being returned.| | $limit | specifies the total number of records returned in the result set. Must be a positive integer between 0 and 100. Any number out of this range will lead to a validation error. If the limit is not provided a default value of 50 records will be returned in the result set| | $filter | allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. | | $orderby | allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified the resources will be sorted in ascending order by default. For example, 'orderby=templateName desc' would get all templates sorted by templateName in desc order. | | $select | allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e. *), then all properties on the matching resource will be returned. | | $expand | allows clients to request related resources when a resource that satisfies a particular request is retrieved. Each expand item is evaluated relative to the entity containing the property being expanded. Other query options can be applied to an expanded property by appending a semicolon-separated list of query options, enclosed in parentheses, to the property name. Allowed system query options are $filter,$select, $orderby. |

List Options can be passed to list operations in order to perform pagination, filtering etc.

import ApiClient from "@nutanix-api/aiops-js-client/dist/es/ApiClient";
import StatsApi from "@nutanix-api/aiops-js-client/dist/es/apis/stats-endpoints";
// Configure the client
// ...
let client = new ApiClient();
// Initialize the API
let statsApi = new StatsApi(client);
    let sourceExtId = "B8EbF65c-28CE-0Dfd-Db1F-D2B5EdcDecFD";
    let extId = "c1f2aACC-dEe5-ccC6-D0cF-cDf6aDd2E8D0";

//Construct List Options
var listOptions = new Object();
listOptions.page = 0;
listOptions.limit = 50;
listOptions.samplingInterval = 1;
listOptions.statType = SOME_RAW_DATA;

statsApi.getEntityMetricsV4(sourceExtId, extId, listOptions).then(({data, response}) => {
    console.log(`API returned the following status code: ${response.status}`);
}).catch((err) =>  {
    console.log(`Error is: ${err}`);
});

The list of filterable and sortable fields with expansion keys can be found in the documentation here.

API Reference

This library has a full set of API Reference Documentation. This documentation is auto-generated, and the location may change.

License

This library is licensed under Nutanix proprietary license. Full license text is available in LICENSE.

Contact us

In case of issues please reach out to us at the mailing list