1.1.0 • Published 7 years ago

azure-arm-servermanagement v1.1.0

Weekly downloads
8,779
License
MIT
Repository
github
Last release
7 years ago

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

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

1.1.0

7 years ago

1.0.0-preview

7 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago