Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

azure-arm-network

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-arm-network

NetworkManagementClient Library with typescript type definitions for node

  • 13.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Microsoft Azure SDK for Node.js - Network Management

This project provides a Node.js package that makes it easy to manage Microsoft Azure Network Resources.

  • Node.js version: 6.x.x or higher
  • API version: 2017-10-01

Features

  • Manage virtual network
  • Manage subnet
  • Manage network security group
  • Manage network security rule
  • Manage load balancer
  • Manage network interface
  • Manage publicIPAddress
  • Manage application gateway
  • Manage connections
  • Manage express route
  • Manage local network gateway
  • Manage application security group
  • Manage network watcher
  • Manage route table
  • Manage route
  • Manage virtual network gateway

How to Install

npm install azure-arm-network

How to use

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

var msRestAzure = require('ms-rest-azure');
var NetworkManagementClient = require('azure-arm-network');

// 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 NetworkManagementClient(credentials, 'your-subscription-id');
 client.virtualNetworks.list(resourceGroupName, function(err, result, request, response) {
   if (err) console.log(err);
   console.log(result);
 });
});

Detailed Sample

A detailed sample for managing a load balancer than can be cloned and is ready to used can be found here.

Impressions

Keywords

FAQs

Package last updated on 26 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc