# azure-arm-hdinsight

> HDInsightManagementClient Library with typescript type definitions for node

Latest version **0.13.0** (published 2019-04-10) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install azure-arm-hdinsight
pnpm add azure-arm-hdinsight
yarn add azure-arm-hdinsight
bun add azure-arm-hdinsight
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.13.0 |
| Published | 2019-04-10 |
| First published | 2015-11-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 912.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| GitHub stars | 1174 |
| Author | Microsoft Corporation |
| Maintainers | windowsazure |
| Keywords | node, azure |

## Links

- npm: https://www.npmjs.com/package/azure-arm-hdinsight
- Repository: https://github.com/azure/azure-sdk-for-node
- Homepage: https://github.com/azure/azure-sdk-for-node/tree/master/lib/services/hdInsightManagement
- Issues: https://github.com/azure/azure-sdk-for-node/issues
- npm.io page: https://npm.io/package/azure-arm-hdinsight

## Dependencies (2)

- [ms-rest](https://npm.io/package/ms-rest.md) ^2.5.0
- [ms-rest-azure](https://npm.io/package/ms-rest-azure.md) ^2.5.5

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 0.13.0 (latest) — 2019-04-10
- 0.12.0 — 2019-01-29
- 0.11.0 — 2018-12-11
- 0.10.0 — 2018-11-07
- 0.9.0 — 2018-10-31
- 0.8.0 — 2018-10-12
- 0.7.0 — 2018-09-28
- 0.6.0 — 2018-08-27
- 0.5.0 — 2018-07-18
- 0.4.0 — 2018-07-17
- 0.3.0 — 2018-03-29
- 0.2.2 — 2016-10-19
- 0.2.1 — 2016-09-02
- 0.2.0 — 2016-03-17
- 0.1.0 — 2015-11-22

## README

---
uid: azure-arm-hdinsight
summary: *content

---
**This SDK will be deprecated next year and will be replaced by a new TypeScript-based isomorphic SDK (found at https://www.npmjs.com/package/@azure/arm-hdinsight) which works on Node.js and browsers.**
**See https://aka.ms/azure-sdk-for-js-migration to learn more.**
## Microsoft Azure SDK for Node.js - HDInsightManagementClient

This project provides a Node.js package for accessing Azure. Right now it supports:
- **Node.js version 6.x.x or higher**

### Features


### How to Install

```bash
npm install azure-arm-hdinsight
```

### How to use

#### Authentication, client creation, and get clusters as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const HDInsightManagementClient = require("azure-arm-hdinsight");
msRestAzure.interactiveLogin().then((creds) => {
  const subscriptionId = "<Subscription_Id>";
  const client = new HDInsightManagementClient(creds, subscriptionId);
  const resourceGroupName = "testresourceGroupName";
  const clusterName = "testclusterName";

  return client.clusters.get(resourceGroupName, clusterName).then((result) => {
    console.log("The result is:");
    console.log(result);
  });
}).catch((err) => {
  console.log('An error occurred:');
  console.dir(err, {depth: null, colors: true});
});
```
### Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)

---
_Source: https://npm.io/package/azure-arm-hdinsight · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
