Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@azure/arm-network
Advanced tools
NetworkManagementClient Library with typescript type definitions for node.js and browser.
This package contains an isomorphic SDK (runs both in node.js and in browsers) for NetworkManagementClient.
You must have an Azure subscription.
To use this SDK in your project, you will need to install two packages.
@azure/arm-network
that contains the client.@azure/identity
that provides different mechanisms for the client to authenticate your requests using Azure Active Directory.Install both packages using the below command:
npm install --save @azure/arm-network @azure/identity
Note: You may have used either
@azure/ms-rest-nodeauth
or@azure/ms-rest-browserauth
in the past. These packages are in maintenance mode receiving critical bug fixes, but no new features. If you are on a Node.js that has LTS status, or are writing a client side browser application, we strongly encourage you to upgrade to@azure/identity
which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options.
@azure/identity
based on the authentication method of your choiceDefaultAzureCredential
in the Node.js sample below.In the below samples, we pass the credential and the Azure subscription id to instantiate the client. Once the client is created, explore the operations on it either in your favorite editor or in our API reference documentation to get started.
const { DefaultAzureCredential } = require("@azure/identity");
const { NetworkManagementClient } = require("@azure/arm-network");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
// Use `DefaultAzureCredential` or any other credential of your choice based on https://aka.ms/azsdk/js/identity/examples
// Please note that you can also use credentials from the `@azure/ms-rest-nodeauth` package instead.
const creds = new DefaultAzureCredential();
const client = new NetworkManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
const applicationGatewayName = "testapplicationGatewayName";
client.applicationGateways.get(resourceGroupName, applicationGatewayName).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
In browser applications, we recommend using the InteractiveBrowserCredential
that interactively authenticates using the default system browser.
<!DOCTYPE html>
<html lang="en">
<head>
<title>@azure/arm-network sample</title>
<script src="node_modules/@azure/ms-rest-azure-js/dist/msRestAzure.js"></script>
<script src="node_modules/@azure/identity/dist/index.js"></script>
<script src="node_modules/@azure/arm-network/dist/arm-network.js"></script>
<script type="text/javascript">
const subscriptionId = "<Subscription_Id>";
// Create credentials using the `@azure/identity` package.
// Please note that you can also use credentials from the `@azure/ms-rest-browserauth` package instead.
const credential = new InteractiveBrowserCredential(
{
clientId: "<client id for your Azure AD app>",
tenant: "<optional tenant for your organization>"
});
const client = new Azure.ArmNetwork.NetworkManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
const applicationGatewayName = "testapplicationGatewayName";
client.applicationGateways.get(resourceGroupName, applicationGatewayName).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
</script>
</head>
<body></body>
</html>
FAQs
A generated SDK for NetworkManagementClient.
The npm package @azure/arm-network receives a total of 37,526 weekly downloads. As such, @azure/arm-network popularity was classified as popular.
We found that @azure/arm-network demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.