Socket
Book a DemoInstallSign in
Socket

@azure/arm-network

Package Overview
Dependencies
Maintainers
5
Versions
419
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/arm-network

A generated SDK for NetworkManagementClient.

34.0.0-alpha.20250620.1
Source
npmnpm
Version published
Weekly downloads
198K
2.64%
Maintainers
5
Weekly downloads
 
Created

What is @azure/arm-network?

@azure/arm-network is a Node.js client library for Azure Network Management. It provides a set of tools to manage and interact with Azure's networking resources, such as virtual networks, subnets, network interfaces, and more.

What are @azure/arm-network's main functionalities?

Virtual Network Management

This feature allows you to create or update virtual networks in Azure. The code sample demonstrates how to use the NetworkManagementClient to create a virtual network by specifying the resource group, network name, and parameters.

const { NetworkManagementClient } = require('@azure/arm-network');
const client = new NetworkManagementClient(credentials, subscriptionId);
client.virtualNetworks.createOrUpdate(resourceGroupName, virtualNetworkName, parameters).then(result => {
  console.log('Virtual Network created:', result);
}).catch(err => {
  console.error('Error creating virtual network:', err);
});

Subnet Management

This feature enables the management of subnets within a virtual network. The code sample shows how to create or update a subnet by providing the necessary parameters.

client.subnets.createOrUpdate(resourceGroupName, virtualNetworkName, subnetName, subnetParameters).then(result => {
  console.log('Subnet created:', result);
}).catch(err => {
  console.error('Error creating subnet:', err);
});

Network Interface Management

This feature allows for the creation and management of network interfaces. The code sample illustrates how to create or update a network interface using the NetworkManagementClient.

client.networkInterfaces.createOrUpdate(resourceGroupName, networkInterfaceName, parameters).then(result => {
  console.log('Network Interface created:', result);
}).catch(err => {
  console.error('Error creating network interface:', err);
});

Other packages similar to @azure/arm-network

Keywords

node

FAQs

Package last updated on 20 Jun 2025

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.