# azure-arm-scheduler

> Microsoft Azure Scheduler Management Client Library for node

Latest version **1.2.0-preview** (published 2017-12-08) · MIT license · 0 weekly downloads

## Install

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

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.0-preview |
| Published | 2017-12-08 |
| First published | 2017-04-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| 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-scheduler
- Repository: https://github.com/Azure/azure-sdk-for-node
- Homepage: http://github.com/Azure/azure-sdk-for-node
- Issues: http://github.com/Azure/azure-sdk-for-node/issues
- npm.io page: https://npm.io/package/azure-arm-scheduler

## Dependencies (2)

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

## 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

- 1.2.0-preview (latest) — 2017-12-08
- 1.1.0-preview — 2017-09-28
- 1.0.0-preview — 2017-04-03

## README

# Microsoft Azure SDK for Node.js - SchedulerManagement

This project provides a Node.js package that makes it easy to manage Microsoft Azure Scheduler.
## API-Version: 2016-04-01
## Minimum node.js version >= 6.x.x

## How to Install

```bash
npm install azure-arm-scheduler
```

## How to Use

### Authentication, client creation and listing zones as an example

 ```javascript
 const msRestAzure = require('ms-rest-azure');
 const SchedulerManagement = require("azure-arm-scheduler");
 
 // Interactive Login
 // It provides a url and code that needs to be copied and pasted in a browser and authenticated over there. If successful, 
 // the user will get a DeviceTokenCredentials object.
 msRestAzure.interactiveLogin().then((credentials) => {
   let client = new SchedulerManagement(credentials, 'your-subscription-id');
   return client.zones.list();
 }).then((zones) => {
  console.log('List of zones:');
  console.dir(zones, {depth: null, colors: true});
}).catch((err) => {
   console.log('An error ocurred');
   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-scheduler · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
