33.1.0 • Published 18 hours ago

@azure/arm-network v33.1.0

Weekly downloads
7,834
License
MIT
Repository
github
Last release
18 hours ago

Azure NetworkManagement client library for JavaScript

This package contains an isomorphic SDK (runs both in Node.js and in browsers) for Azure NetworkManagement client.

Network Client

Source code | Package (NPM) | API reference documentation | Samples

Getting started

Currently supported environments

Prerequisites

Install the @azure/arm-network package

Install the Azure NetworkManagement client library for JavaScript with npm:

npm install @azure/arm-network

Create and authenticate a NetworkManagementClient

To create a client object to access the Azure NetworkManagement API, you will need the endpoint of your Azure NetworkManagement resource and a credential. The Azure NetworkManagement client can use Azure Active Directory credentials to authenticate. You can find the endpoint for your Azure NetworkManagement resource in the Azure Portal.

Using an Azure Active Directory Credential

You can authenticate with Azure Active Directory using the Azure Identity library. To use the DefaultAzureCredential provider shown below, or other credential providers provided with the Azure SDK, please install the @azure/identity package:

npm install @azure/identity

You will also need to register a new AAD application and grant access to Azure NetworkManagement by assigning the suitable role to your service principal (note: roles such as "Owner" will not grant the necessary permissions). Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET.

const { NetworkManagementClient } = require("@azure/arm-network");
const { DefaultAzureCredential } = require("@azure/identity");
const client = new NetworkManagementClient("<endpoint>", new DefaultAzureCredential());

Key concepts

NetworkManagementClient

NetworkManagementClient is the primary interface for developers using the Azure NetworkManagement client library. Explore the methods on this client object to understand the different features of the Azure NetworkManagement service that you can access.

Troubleshooting

Logging

Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the AZURE_LOG_LEVEL environment variable to info. Alternatively, logging can be enabled at runtime by calling setLogLevel in the @azure/logger:

import { setLogLevel } from "@azure/logger";
setLogLevel("info");

For more detailed instructions on how to enable logs, you can look at the @azure/logger package docs.

Next steps

Please take a look at the samples directory for detailed examples on how to use this library.

Contributing

If you'd like to contribute to this library, please read the contributing guide to learn more about how to build and test the code.

Related projects

Impressions

33.1.0

2 months ago

33.0.0

5 months ago

32.2.0

8 months ago

32.1.0

9 months ago

32.0.0

10 months ago

31.0.0

12 months ago

30.2.0

1 year ago

30.1.0

1 year ago

30.0.0

2 years ago

29.0.0

2 years ago

28.0.0

2 years ago

27.0.0

2 years ago

26.0.0

2 years ago

25.4.0

2 years ago

25.3.0

3 years ago

26.0.0-beta.2

3 years ago

26.0.0-beta.1

3 years ago

30.0.0-beta.3

3 years ago

25.2.0

3 years ago

30.0.0-beta.2

3 years ago

25.1.1

3 years ago

30.0.0-beta.1

3 years ago

25.1.0

3 years ago

25.0.0

3 years ago

24.0.0

3 years ago

23.3.0

3 years ago

23.2.0

3 years ago

23.1.0

3 years ago

23.0.0

4 years ago

22.0.0

4 years ago

21.1.0

4 years ago

21.0.0

4 years ago

20.0.0

4 years ago

19.1.0

4 years ago

19.0.0

5 years ago

18.0.0

5 years ago

17.0.0

5 years ago

16.0.0

5 years ago

15.0.0

5 years ago

14.0.0

5 years ago

13.0.0

5 years ago

12.1.0

5 years ago

12.0.0

5 years ago

11.1.1

5 years ago

11.1.0

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago

1.0.0

6 years ago