This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR network/resource-manager] Release of Azure Networking Network…
…-2018-06-01 (api-version 2018-04-01) (#3028) * Generated from e15c8600ed6dbd8440f2471838554034175c4c07 Integrated recent changes into 2018-04-01 * Generated from ca313b2e8484a0dca375caa8d71a581f6a0e4353 moved fixes in Vnet gateway to april branch * Generated from 05c228ff1cea5f29c0748791f907a63d3a347b4e reverted nic vm as readonly * Generated from f3195c8e637274e6bc1ffe14dc891c101c923c7f Adding VirtualWan Swagger (#3204) * Adding VirtualWan Swagger * Adding the CRUD Apis for VpnConnections * Updating VpnGateway examples * Fixing build errors * Addressing comments * Addressing comments and editing VpnConnection definition and corresponding examples * Addressing comments * Removing enableRateLimiting property * Addressing comments * Changing the version to 2018-04-01 version
- Loading branch information
1 parent
e9315a6
commit 3e1a02f
Showing
37 changed files
with
19,847 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
lib/services/networkManagement2/lib/models/applicationGatewayAutoscaleBounds.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
/** | ||
* Application Gateway autoscale bounds on number of Application Gateway | ||
* instance. | ||
* | ||
*/ | ||
class ApplicationGatewayAutoscaleBounds { | ||
/** | ||
* Create a ApplicationGatewayAutoscaleBounds. | ||
* @member {number} min Lower bound on number of Application Gateway | ||
* instances. | ||
* @member {number} max Upper bound on number of Application Gateway | ||
* instances. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of ApplicationGatewayAutoscaleBounds | ||
* | ||
* @returns {object} metadata of ApplicationGatewayAutoscaleBounds | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'ApplicationGatewayAutoscaleBounds', | ||
type: { | ||
name: 'Composite', | ||
className: 'ApplicationGatewayAutoscaleBounds', | ||
modelProperties: { | ||
min: { | ||
required: true, | ||
serializedName: 'min', | ||
type: { | ||
name: 'Number' | ||
} | ||
}, | ||
max: { | ||
required: true, | ||
serializedName: 'max', | ||
type: { | ||
name: 'Number' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = ApplicationGatewayAutoscaleBounds; |
59 changes: 59 additions & 0 deletions
59
lib/services/networkManagement2/lib/models/applicationGatewayAutoscaleConfiguration.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const models = require('./index'); | ||
|
||
/** | ||
* Application Gateway autoscale configuration. | ||
* | ||
*/ | ||
class ApplicationGatewayAutoscaleConfiguration { | ||
/** | ||
* Create a ApplicationGatewayAutoscaleConfiguration. | ||
* @member {object} bounds Autoscale bounds | ||
* @member {number} [bounds.min] Lower bound on number of Application Gateway | ||
* instances. | ||
* @member {number} [bounds.max] Upper bound on number of Application Gateway | ||
* instances. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of ApplicationGatewayAutoscaleConfiguration | ||
* | ||
* @returns {object} metadata of ApplicationGatewayAutoscaleConfiguration | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'ApplicationGatewayAutoscaleConfiguration', | ||
type: { | ||
name: 'Composite', | ||
className: 'ApplicationGatewayAutoscaleConfiguration', | ||
modelProperties: { | ||
bounds: { | ||
required: true, | ||
serializedName: 'bounds', | ||
type: { | ||
name: 'Composite', | ||
className: 'ApplicationGatewayAutoscaleBounds' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = ApplicationGatewayAutoscaleConfiguration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
lib/services/networkManagement2/lib/models/deviceProperties.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
/** | ||
* List of properties of the device. | ||
* | ||
*/ | ||
class DeviceProperties { | ||
/** | ||
* Create a DeviceProperties. | ||
* @member {string} [deviceVendor] Name of the device Vendor. | ||
* @member {string} [deviceModel] Model of the device. | ||
* @member {number} [linkSpeedInMbps] Link speed. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of DeviceProperties | ||
* | ||
* @returns {object} metadata of DeviceProperties | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'DeviceProperties', | ||
type: { | ||
name: 'Composite', | ||
className: 'DeviceProperties', | ||
modelProperties: { | ||
deviceVendor: { | ||
required: false, | ||
serializedName: 'deviceVendor', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
deviceModel: { | ||
required: false, | ||
serializedName: 'deviceModel', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
linkSpeedInMbps: { | ||
required: false, | ||
serializedName: 'linkSpeedInMbps', | ||
type: { | ||
name: 'Number' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = DeviceProperties; |
72 changes: 72 additions & 0 deletions
72
lib/services/networkManagement2/lib/models/getVpnSitesConfigurationRequest.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const models = require('./index'); | ||
|
||
/** | ||
* List of Vpn-Sites | ||
* | ||
*/ | ||
class GetVpnSitesConfigurationRequest { | ||
/** | ||
* Create a GetVpnSitesConfigurationRequest. | ||
* @member {array} [vpnSites] List of resource-ids of the vpn-sites for which | ||
* config is to be downloaded. | ||
* @member {string} [outputBlobSasUrl] The sas-url to download the | ||
* configurations for vpn-sites | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of GetVpnSitesConfigurationRequest | ||
* | ||
* @returns {object} metadata of GetVpnSitesConfigurationRequest | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'GetVpnSitesConfigurationRequest', | ||
type: { | ||
name: 'Composite', | ||
className: 'GetVpnSitesConfigurationRequest', | ||
modelProperties: { | ||
vpnSites: { | ||
required: false, | ||
serializedName: 'vpnSites', | ||
type: { | ||
name: 'Sequence', | ||
element: { | ||
required: false, | ||
serializedName: 'SubResourceElementType', | ||
type: { | ||
name: 'Composite', | ||
className: 'SubResource' | ||
} | ||
} | ||
} | ||
}, | ||
outputBlobSasUrl: { | ||
required: false, | ||
serializedName: 'outputBlobSasUrl', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = GetVpnSitesConfigurationRequest; |
Oops, something went wrong.