# azure-arm-batch

> BatchManagementClient Library with typescript type definitions for node

Latest version **7.0.0** (published 2020-05-07) · MIT license · 0 weekly downloads

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

## Install

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

## Health

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

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 7.0.0 |
| Published | 2020-05-07 |
| First published | 2016-03-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 1.6 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1174 |
| Author | Microsoft Corporation |
| Maintainers | windowsazure |
| Keywords | node, azure |

## Links

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

## Dependencies (2)

- [ms-rest](https://npm.io/package/ms-rest.md) ^2.3.3
- [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

- 7.0.0 (latest) — 2020-05-07
- 5.0.0 — 2019-08-21
- 4.0.0 — 2019-01-16
- 3.2.0 — 2018-11-07
- 3.1.2 — 2018-08-27
- 3.1.1 — 2018-07-10
- 3.1.0 — 2018-04-03
- 3.0.0 — 2017-11-09
- 2.2.0 — 2017-09-28
- 2.1.0-preview — 2017-07-24
- 2.0.0-preview — 2017-06-01
- 1.0.0-preview — 2017-04-03
- 0.4.0 — 2017-03-10
- 0.3.0 — 2016-09-30
- 0.2.1 — 2016-09-02
- … 2 more at https://npm.io/package/azure-arm-batch/versions

## README

---
uid: azure-arm-batch
summary: *content

---
**This SDK will be deprecated next year and will be replaced by a new TypeScript-based isomorphic SDK (found at https://github.com/Azure/azure-sdk-for-js) which works on Node.js and browsers.**
## Microsoft Azure SDK for Node.js - BatchManagementClient

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-batch
```

### How to use

#### Authentication, client creation, and get batchAccount as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const BatchManagementClient = require("azure-arm-batch");
msRestAzure.interactiveLogin().then((creds) => {
  const subscriptionId = "<Subscription_Id>";
  const client = new BatchManagementClient(creds, subscriptionId);
  const resourceGroupName = "testresourceGroupName";
  const accountName = "testaccountName";

  return client.batchAccount.get(resourceGroupName, accountName).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-batch · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
