Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3267 from Azure/restapi_auto_web/resource-manager
Browse files Browse the repository at this point in the history
[AutoPR] web/resource-manager
  • Loading branch information
Dan Schulte authored Aug 29, 2018
2 parents facaa4f + ea5a2f8 commit 2bad865
Show file tree
Hide file tree
Showing 123 changed files with 274,193 additions and 76 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@

'use strict';

const models = require('./index');

/**
* Gateway routing details
*
* @extends models['ProxyOnlyResource']
*/
class GatewayRoute {
/**
Expand All @@ -26,6 +29,7 @@ class GatewayRoute {
* @member {number} [weight] The route's weight
*/
constructor() {
super();
}

/**
Expand Down
21 changes: 21 additions & 0 deletions lib/services/websiteManagement2/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2018 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
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
40 changes: 40 additions & 0 deletions lib/services/websiteManagement2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
uid: azure-arm-website
summary: *content

---
# Microsoft Azure SDK for Node.js - WebSiteManagementClient
This project provides a Node.js package for accessing Azure. Right now it supports:
- **Node.js version 6.x.x or higher**

## Features


## How to Install

```bash
npm install azure-arm-website
```

## How to use

### Authentication, client creation and list appServiceCertificateOrders as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const WebSiteManagementClient = require("azure-arm-website");
msRestAzure.interactiveLogin().then((creds) => {
const subscriptionId = "<Subscription_Id>";
const client = new WebSiteManagementClient(creds, subscriptionId);
return client.appServiceCertificateOrders.list().then((result) => {
console.log("The result is:");
console.log(result);
});
}).catch((err) => {
console.log('An error occurred:');
console.dir(err, {depth: null, colors: true});
});

## Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Class representing Abnormal Time Period identified in diagnosis
*
Expand Down
2 changes: 0 additions & 2 deletions lib/services/websiteManagement2/lib/models/addressResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Describes main public IP address and any extra virtual IPs.
*
Expand Down
2 changes: 0 additions & 2 deletions lib/services/websiteManagement2/lib/models/analysisData.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Class Representing Detector Evidence used for analysis
*
Expand Down
Loading

0 comments on commit 2bad865

Please sign in to comment.