Skip to content

Commit

Permalink
CodeGen from PR 12855 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Peering new api version 2021-01-01 (Azure#12855)

* Peering new api version 2021-01-01

* Adding previous api version for diff

* Updating swagger and examples for new api

* Adding new parameters to the end of the resource model

* Ensure parameter ordering for PeeringServiceProperties

Co-authored-by: Renuka Raju <[email protected]>
  • Loading branch information
SDKAuto and Renuka Raju committed Mar 3, 2021
1 parent d1d33a4 commit daa5665
Show file tree
Hide file tree
Showing 38 changed files with 3,221 additions and 531 deletions.
2 changes: 1 addition & 1 deletion sdk/peering/arm-peering/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Microsoft
Copyright (c) 2021 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
19 changes: 8 additions & 11 deletions sdk/peering/arm-peering/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-peering

### How to use

#### nodejs - Authentication, client creation and list legacyPeerings as an example written in TypeScript.
#### nodejs - client creation and list cdnPeeringPrefixes as an example written in TypeScript.

##### Install @azure/ms-rest-nodeauth

Expand All @@ -26,18 +26,16 @@ npm install @azure/ms-rest-nodeauth@"^3.0.0"

##### Sample code

While the below sample uses the interactive login, other authentication options can be found in the [README.md file of @azure/ms-rest-nodeauth](https://www.npmjs.com/package/@azure/ms-rest-nodeauth) package
```typescript
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { PeeringManagementClient, PeeringManagementModels, PeeringManagementMappers } from "@azure/arm-peering";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { PeeringManagementClient } = require("@azure/arm-peering");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
const client = new PeeringManagementClient(creds, subscriptionId);
const peeringLocation = "testpeeringLocation";
const kind = "Direct";
client.legacyPeerings.list(peeringLocation, kind).then((result) => {
client.cdnPeeringPrefixes.list(peeringLocation).then((result) => {
console.log("The result is:");
console.log(result);
});
Expand All @@ -46,7 +44,7 @@ msRestNodeAuth.interactiveLogin().then((creds) => {
});
```

#### browser - Authentication, client creation and list legacyPeerings as an example written in JavaScript.
#### browser - Authentication, client creation and list cdnPeeringPrefixes as an example written in JavaScript.

##### Install @azure/ms-rest-browserauth

Expand Down Expand Up @@ -81,8 +79,7 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
}
const client = new Azure.ArmPeering.PeeringManagementClient(res.creds, subscriptionId);
const peeringLocation = "testpeeringLocation";
const kind = "Direct";
client.legacyPeerings.list(peeringLocation, kind).then((result) => {
client.cdnPeeringPrefixes.list(peeringLocation).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
Expand All @@ -100,4 +97,4 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to

- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)

![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fsdk%2Fpeering%2Farm-peering%2FREADME.png)
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/peering/arm-peering/README.png)
4 changes: 2 additions & 2 deletions sdk/peering/arm-peering/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const config = {
"@azure/ms-rest-azure-js": "msRestAzure"
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand All @@ -9,9 +9,12 @@
export {
BaseResource,
BgpSession,
ContactInfo,
CdnPeeringPrefix,
CdnPeeringPrefixListResult,
ContactDetail,
DirectConnection,
DirectPeeringFacility,
ErrorDetail,
ErrorResponse,
ExchangeConnection,
ExchangePeeringFacility,
Expand All @@ -23,10 +26,15 @@ export {
PeeringLocationPropertiesExchange,
PeeringPropertiesDirect,
PeeringPropertiesExchange,
PeeringRegisteredAsn,
PeeringRegisteredPrefix,
PeeringService,
PeeringServiceCountry,
PeeringServiceLocation,
PeeringServicePrefix,
PeeringServicePrefixEvent,
PeeringServiceProvider,
PeeringServiceSku,
PeeringSku,
Resource,
SubResource
Expand Down
Loading

0 comments on commit daa5665

Please sign in to comment.