This package has been deprecated

Author message:

This package is deprecated in favor of @azure/arm-compute whick works both on node.js and browsers

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

10.0.0 • Public • Published

Microsoft Azure SDK for Node.js - Compute Management

This project provides a Node.js package that makes it easy to manage Microsoft Azure Compute Resources. Right now it supports:

  • Node.js version: 6.x.x or higher

How to Install

npm install azure-arm-compute

How to use

Authentication, client creation and listing vm images as an example

var msRestAzure = require('ms-rest-azure');
var computeManagementClient = require('azure-arm-compute');
 
// 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(function(err, credentials) {
 var client = new computeManagementClient(credentials, 'your-subscription-id');
 client.virtualMachineImages.list('westus', 'MicrosoftWindowsServer', 'WindowsServer', '2012-R2-Datacenter', function(err, result, request, response) {
   if (err) console.log(err);
   console.log(result);
 });
});

Detailed Samples

  • VM Operations: A detailed sample for creating, getting, listing, powering off, restarting, deleting a vm can be found here.
  • MSI (Managed Service Identity): A sample that shows how to create a VM with Managed Service Identity can be found here.
  • Using MSI to get tokens: A sample showing how to use the SDK from a VM with MSI to get a token can be found here.

Related projects

Impressions

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i azure-arm-compute

    Weekly Downloads

    16,452

    Version

    10.0.0

    License

    MIT

    Unpacked Size

    5.15 MB

    Total Files

    252

    Last publish

    Collaborators

    • windowsazure