azure-mgmt-resource
v2.0.0-pre.17
Published
Microsoft Azure Resource Management Client Library for node
Readme
Microsoft Azure SDK for Node.js - Resource Management
This project provides a Node.js package that makes it easy to manage Azure resources. Right now it supports:
- Node.js version: 0.6.15 or higher
- API version: 2013-08-01
Features
- TODO
How to Install
npm install azure-mgmt-resourceHow to Use
Authentication
- TODO: Describe tokens
Create the ResourceManagementClient
var fs = require("fs"),
common = require("azure-common"),
resourceManagement = require("azure-mgmt-resource");
var resourceManagementClient = resourceManagement.createResourceManagementClient(new common.TokenCloudCredentials({
subscriptionId: "<your subscription id>",
token: "<your token here>"
}));