Skip to content

Commit

Permalink
arm-network-release (#16330)
Browse files Browse the repository at this point in the history
  • Loading branch information
colawwj authored Jul 16, 2021
1 parent 2c8de11 commit 88a3220
Show file tree
Hide file tree
Showing 107 changed files with 8,779 additions and 7,428 deletions.
50 changes: 20 additions & 30 deletions sdk/network/arm-network/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This package contains an isomorphic SDK (runs both in node.js and in browsers) f
### Currently supported environments

- [LTS versions of Node.js](https://nodejs.org/about/releases/)
- Latest versions of Safari, Chrome, Edge, and Firefox.
- Latest versions of Safari, Chrome, Edge and Firefox.

### Prerequisites

Expand All @@ -14,18 +14,15 @@ You must have an [Azure subscription](https://azure.microsoft.com/free/).
### How to install

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:

```bash
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](https://nodejs.org/about/releases/), 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.
If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), 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.

### How to use

Expand All @@ -39,7 +36,6 @@ npm install --save @azure/arm-network @azure/identity

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](https://docs.microsoft.com/javascript/api) to get started.

#### nodejs - Authentication, client creation, and get applicationGateways as an example written in JavaScript.

##### Sample code
Expand All @@ -55,24 +51,20 @@ 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);
});
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);
});
```

#### browser - Authentication, client creation, and get applicationGateways as an example written in JavaScript.

In browser applications, we recommend using the `InteractiveBrowserCredential` that interactively authenticates using the default system browser.

- See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser.
- Note down the client Id from the previous step and use it in the browser sample below.
- See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser.
- Note down the client Id from the previous step and use it in the browser sample below.

##### Sample code

Expand All @@ -90,23 +82,21 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t
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({
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);
});
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>
Expand Down
4 changes: 2 additions & 2 deletions sdk/network/arm-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/arm-network",
"author": "Microsoft Corporation",
"description": "NetworkManagementClient Library with typescript type definitions for node.js and browser.",
"version": "25.0.0",
"version": "25.1.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^2.1.0",
"@azure/ms-rest-js": "^2.2.0",
Expand All @@ -27,7 +27,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/network/arm-network",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/network/arm-network",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -283,6 +285,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -283,6 +285,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -270,6 +271,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -294,6 +296,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -284,6 +286,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -283,6 +285,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -283,6 +285,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
3 changes: 3 additions & 0 deletions sdk/network/arm-network/src/models/azureFirewallsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -284,6 +286,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
3 changes: 3 additions & 0 deletions sdk/network/arm-network/src/models/bastionHostsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -283,6 +285,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -283,6 +285,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HopLink,
HTTPHeader,
HubIPAddresses,
Expand Down Expand Up @@ -267,6 +268,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -291,6 +293,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
3 changes: 3 additions & 0 deletions sdk/network/arm-network/src/models/customIPPrefixesMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
FlowLog,
FlowLogFormatParameters,
FrontendIPConfiguration,
GatewayLoadBalancerTunnelInterface,
HTTPHeader,
HubIPAddresses,
HubIpConfiguration,
Expand Down Expand Up @@ -260,6 +261,7 @@ export {
ServiceEndpointPolicy,
ServiceEndpointPolicyDefinition,
ServiceEndpointPropertiesFormat,
Sku,
StaticRoute,
Subnet,
SubResource,
Expand All @@ -284,6 +286,7 @@ export {
VirtualNetworkGatewayConnection,
VirtualNetworkGatewayConnectionListEntity,
VirtualNetworkGatewayIPConfiguration,
VirtualNetworkGatewayNatRule,
VirtualNetworkGatewaySku,
VirtualNetworkPeering,
VirtualNetworkTap,
Expand Down
Loading

0 comments on commit 88a3220

Please sign in to comment.