azure-arm-servermanagement

Microsoft Server Management Client Library for node

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
azure-arm-servermanagement
1.1.06 years ago8 years agoMinified + gzip package size for azure-arm-servermanagement in KB

Readme

Microsoft Azure SDK for Node.js - ServerManagement
This project provides a Node.js package that makes it easy to manage Azure ServerManagement Resources. Right now it supports:
  • Node.js version: 6.0.0 or higher

Features

- TODO

How to Install

npm install azure-arm-servermanagement

How to Use

Authentication, client creation and listing nodes in a resource group as an example

```javascript var msRestAzure = require('ms-rest-azure'); var ServerManagement = require('azure-arm-servermanagement'); // Interactive Login msRestAzure.interactiveLogin(function(err, credentials) { var client = new ServerManagement(credentials, 'your-subscription-id'); client.node.list(resourceGroupName, function(err, nodes, request, response) {
if (err) console.log(err);
nodes.map(function (node, index, array) {
  console.log('found node :' + node.name);
}));
}); }); ```

Related projects