azure-arm-servermanagement
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.0
    2,084
    • latest

Version History

Package Sidebar

Install

npm i azure-arm-servermanagement

Weekly Downloads

11,655

Version

1.1.0

License

MIT

Last publish

Collaborators

  • windowsazure