Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build release #5717

Merged
merged 36 commits into from
Apr 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
701b2c8
Adds base for updating Microsoft.Network from version stable/2018-12-…
MikhailTryakhov Mar 19, 2019
5488167
Updates readme
MikhailTryakhov Mar 19, 2019
0aa5541
Updates API version in new specs and examples
MikhailTryakhov Mar 19, 2019
7a5a276
Remove Alert action from user rules (#5428)
fanymanea Mar 20, 2019
c07128d
Merge remote-tracking branch 'remotes/upstream/master' into merge-mas…
anton-evseev Mar 25, 2019
33d813f
Patch call for DDoS Protection plan (#5426)
mancgupta Mar 25, 2019
96ba604
Merge pull request #5464 from number213/merge-master-into-network
sergey-shandar Mar 25, 2019
68cd0d3
Fixed examples for WAFPolicy (#5454)
EvgenyAgafonchikov Mar 25, 2019
20aa68a
Added missing descriptions in Network specs (#5490)
anton-evseev Mar 27, 2019
a6c548c
Updated VNet Gateways operations: Fix for #4642 (#5223)
EvgenyAgafonchikov Mar 28, 2019
e6822ab
Copy changes for AppGw from 2018-12-01 (#5463)
anton-evseev Mar 28, 2019
ffb2b59
Correct Azure Firewall Rule Action in Examples (#5514)
fanymanea Apr 1, 2019
d3599d6
Swagger has to just enforce a positive fileUploadLimitInMb, It doesnt…
venkatsvpr Apr 2, 2019
c72d012
removed unused flag allowglobalreach (#5539)
syfarogh Apr 4, 2019
48b78a1
Stub YML config for validating NRP PRs (#5550)
anton-evseev Apr 4, 2019
d9d5c60
Add new protocols (#5582)
wdehrich Apr 8, 2019
d9304d9
Update readme.python.md
lmazuel Apr 9, 2019
6e5be11
Remove extra "x-ms-enum" (#5617)
anton-evseev Apr 11, 2019
b3ac379
Added missing x-ms-long-running-operation-options (#5572)
anton-evseev Apr 11, 2019
4870323
Initial commit (#5635)
wdehrich Apr 12, 2019
e2c3ec3
Add new Nat Gateway resource (#5579)
khannarheams Apr 12, 2019
91df3a0
Add application gateway backendHealthOnDemand Operation (#5552)
patoda Apr 15, 2019
462346e
Add disableBgpRoutePropagation (#5585)
wdehrich Apr 15, 2019
478d894
Move Network validation config to azure-pipelines.yml (#5589)
anton-evseev Apr 17, 2019
0b0547d
Resolve issue with unreferenced examples in Network specs (#5674)
anton-evseev Apr 17, 2019
6eca950
Swagger changes for useLocalAzureIpAddress property. (#5678)
nalinrajgupta Apr 18, 2019
ab849d1
Fixed allow Vnet description (#5696)
MikhailTryakhov Apr 18, 2019
63f8b71
Remove duplicate enums from Network specs (#5647)
anton-evseev Apr 19, 2019
059756e
Add missing descriptions (#5662)
anton-evseev Apr 19, 2019
643dd3c
Remove duplicate enum ApplicationGatewayProtocol (#5708)
anton-evseev Apr 19, 2019
c51dd73
Update examples to include custom routes parameter (#5710)
Nilambari Apr 19, 2019
be67afb
Merge branch 'master' into build-release
MikhailTryakhov Apr 19, 2019
b8879d5
fixed mistyping
MikhailTryakhov Apr 19, 2019
51da0da
Fix examples
EvgenyAgafonchikov Apr 22, 2019
0afbd8f
Rollback typo fix
EvgenyAgafonchikov Apr 22, 2019
53cb902
Merge pull request #1 from EvgenyAgafonchikov/example-fix
MikhailTryakhov Apr 22, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
39 changes: 39 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,42 @@ jobs:
- script: echo $(NODE_OPTIONS)
- script: "scripts/swagger-to-sdk.sh Azure/$(AZURE_SDK_REPO) -v $(AZURE_SDK_PARAMS)"
displayName: "Swagger to SDK script"

- job: "NetworkValidation"
condition: and(startsWith(variables['System.PullRequest.TargetBranch'], 'network-'), endsWith(variables['System.PullRequest.TargetBranch'], '-release'))
continueOnError: true
pool:
vmImage: vs2017-win2016
variables:
NRP_SWAGGER_VALIDATION_OVERRIDE_PS_BRANCH: 'true'
NRP_BUILD_TOOLS_SKIP_GENERATE_PS1: 'true'
NRP_BUILD_TOOLS_OUTPUT_PATH: '$(System.DefaultWorkingDirectory)\Out'
steps:
- powershell: |
& "C:/Program Files (x86)/Microsoft SDKs/Windows/v10.0A/bin/NETFX 4.6.1 Tools/sn.exe" -Vr *,31bf3856ad364e35
displayName: Bypass Strong Name validation
- task: NodeTool@0
inputs:
versionSpec: 10.x
displayName: Install Node.js
- script: npm install autorest -g
displayName: Install autorest
- script: git clone --depth 1 -- https://dev.azure.com/v-anevse/BuildScripts/_git/BuildScripts ..\BuildScripts
displayName: Clone build tools
- powershell: |
$swgrPath = (Get-Item ".\").FullName
$outputPath = $env:NRP_BUILD_TOOLS_OUTPUT_PATH
New-Item -Path $outputPath -ItemType "Directory" -Force | Out-Null
..\BuildScripts\Test-SwaggerRelease.ps1 -Component Network -SwaggerRepoPath $swgrPath -OutputFolder $outputPath
failOnStderr: false
displayName: Test Swagger updates
- powershell: |
Copy-Item "..\BuildScripts\.azure-pipelines\.artifactignore" -Destination "$($env:NRP_BUILD_TOOLS_OUTPUT_PATH)\.artifactignore" -Force -ErrorAction "SilentlyContinue"
failOnStderr: false
condition: always()
displayName: Copy .artifactignore
- task: PublishPipelineArtifact@0
condition: always()
inputs:
artifactName: SwaggerTestOutput
targetPath: $(NRP_BUILD_TOOLS_OUTPUT_PATH)
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,15 @@
"schema": {
"type": "string"
}
},
"202": {
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile": {
Expand Down Expand Up @@ -396,7 +402,9 @@
}
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getBgpPeerStatus": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,9 +343,15 @@
"schema": {
"type": "string"
}
},
"202": {
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile": {
Expand Down Expand Up @@ -397,7 +403,9 @@
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,9 +393,15 @@
"schema": {
"type": "string"
}
},
"202": {
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile": {
Expand Down Expand Up @@ -447,7 +453,9 @@
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,9 +393,15 @@
"schema": {
"type": "string"
}
},
"202": {
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile": {
Expand Down Expand Up @@ -447,7 +453,9 @@
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,9 +393,15 @@
"schema": {
"type": "string"
}
},
"202": {
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile": {
Expand Down Expand Up @@ -447,7 +453,9 @@
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,9 +393,15 @@
"schema": {
"type": "string"
}
},
"202": {
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile": {
Expand Down Expand Up @@ -447,7 +453,9 @@
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"body" : {

}
}
},
"202": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -408,12 +408,18 @@
"schema": {
"type": "string"
}
},
"202": {
"description": "Accepted and the operation will complete asynchronously."
}
},
"x-ms-examples": {
"GenerateVPNClientPackage": { "$ref": "./examples/VirtualNetworkGatewayGenerateVpnClientPackage.json" }
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile": {
Expand Down Expand Up @@ -468,7 +474,9 @@
"x-ms-examples": {
"GenerateVirtualNetworkGatewayVPNProfile": { "$ref": "./examples/VirtualNetworkGatewayGenerateVpnProfile.json" }
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/getvpnprofilepackageurl": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
"name":"apprulecoll",
"properties":{
"priority":110,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"rule1",
Expand Down Expand Up @@ -68,7 +70,9 @@
"name":"netrulecoll",
"properties":{
"priority":112,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"D-NAT-web-traffic",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
"name":"apprulecoll",
"properties":{
"priority":110,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"rule1",
Expand Down Expand Up @@ -69,7 +71,9 @@
"name":"netrulecoll",
"properties":{
"priority":112,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"D-NAT-web-traffic",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
"name":"apprulecoll",
"properties":{
"priority":110,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"rule1",
Expand Down Expand Up @@ -68,7 +70,9 @@
"name":"netrulecoll",
"properties":{
"priority":112,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"D-NAT-web-traffic",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
"name":"apprulecoll",
"properties":{
"priority":110,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"rule1",
Expand Down Expand Up @@ -55,7 +57,9 @@
"name":"netrulecoll",
"properties":{
"priority":112,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"D-NAT-web-traffic",
Expand Down Expand Up @@ -118,7 +122,9 @@
"name":"apprulecoll",
"properties":{
"priority":110,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"rule1",
Expand Down Expand Up @@ -146,7 +152,9 @@
"name":"netrulecoll",
"properties":{
"priority":112,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"D-NAT-web-traffic",
Expand Down Expand Up @@ -208,7 +216,9 @@
"name":"apprulecoll",
"properties":{
"priority":110,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"rule1",
Expand Down Expand Up @@ -236,7 +246,9 @@
"name":"netrulecoll",
"properties":{
"priority":112,
"action":"Deny",
"action":{
"type": "Deny"
},
"rules":[
{
"name":"D-NAT-web-traffic",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"responses" : {
"200" : {
"body" : ""
}
},
"202": {}
}
}
Loading