Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
f839dbd
Adds base for updating Microsoft.Network from version stable/2020-04-…
anton-evseev May 6, 2020
0246175
Updates readme
anton-evseev May 6, 2020
514a878
Updates API version in new specs and examples
anton-evseev May 6, 2020
0499403
Add VirtualHubBgpConnections, VirtualHubIpConfigurations, NetworkVirt…
naveenchekuri May 18, 2020
212f942
Change NRP repo for validation scripts (#9394)
anton-evseev May 18, 2020
d02659d
Move terminateTLS flag to ApplicationRuleCondition (#9539)
odedlaz May 25, 2020
63f2b24
DNS Proxy support for Firewall Policy (#9461)
ishaniGupta27 May 25, 2020
1c5b662
fix network (#9369) (#9547)
May 26, 2020
1553c58
Added new properties to ConnectivityHop (#9386)
irrogozh May 27, 2020
7b9b3f8
Rename Firewall Policy child resource RuleGroup to RuleCollectionGrou…
saisujithreddym May 27, 2020
685ad97
Multiple Public IPs support for Azure Firewall in Virtual Hub (#9560)
anchalkpr May 28, 2020
193138c
VirtualWan: Hubvnet Connection related changes (#9536)
shyamshd May 29, 2020
f158099
Destination FQDNs in FirewallPolicy for network rules. (#9609)
ishaniGupta27 May 29, 2020
870cc67
VirtualHub : Add Routing State and expose Effective Routes Api (#9385)
nagula-ritvika May 30, 2020
3b8bd3d
Updating VpnGateway examples for bgpSettings (#9656)
Khushboo-Baheti Jun 2, 2020
89331e6
Application Gateway Private Link Support (#9490)
jaishals Jun 5, 2020
932b548
Add nvaSku property for NetworkVirtualAppliance (#9682)
naveenchekuri Jun 7, 2020
42c68f6
code fixes for hubIPAddresses (#9775)
anchalkpr Jun 9, 2020
5e2ed28
Fix lint errors (#9787)
anton-evseev Jun 9, 2020
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
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .azure-pipelines/NetworkValidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
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
- script: git clone --depth 1 -- https://dev.azure.com/nrp-swagger/swagger-stack/_git/automation-scripts ..\BuildScripts
displayName: Clone build tools
- powershell: |
$swgrPath = (Get-Item ".\").FullName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,38 +7,45 @@
"200": {
"body": {
"value": [
[
{
"name": "AppGwSslPolicy20150501",
"id": "/subscriptions/subid/resourceGroups//providers/Microsoft.Network/ApplicationGatewayAvailableSslOptions/default/ApplicationGatewaySslPredefinedPolicy/AppGwSslPolicy20150501",
"properties": {
"cipherSuites": [
"TLS_RSA_WITH_AES_128_CBC_SHA"
],
"minProtocolVersion": "TLSv1_0"
}
},
{
"name": "AppGwSslPolicy20170401",
"id": "/subscriptions/subid/resourceGroups//providers/Microsoft.Network/ApplicationGatewayAvailableSslOptions/default/ApplicationGatewaySslPredefinedPolicy/AppGwSslPolicy20170401",
"properties": {
"cipherSuites": [
"TLS_RSA_WITH_AES_128_CBC_SHA"
],
"minProtocolVersion": "TLSv1_1"
}
},
{
"name": "AppGwSslPolicy20170401S",
"id": "/subscriptions/subid/resourceGroups//providers/Microsoft.Network/ApplicationGatewayAvailableSslOptions/default/ApplicationGatewaySslPredefinedPolicy/AppGwSslPolicy20170401S",
"properties": {
"cipherSuites": [
"TLS_RSA_WITH_AES_128_CBC_SHA"
],
"minProtocolVersion": "TLSv1_2"
}
{
"name": "AppGwSslPolicy20150501",
"id": "/subscriptions/subid/resourceGroups//providers/Microsoft.Network/ApplicationGatewayAvailableSslOptions/default/ApplicationGatewaySslPredefinedPolicy/AppGwSslPolicy20150501",
"properties": {
"cipherSuites": [
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384",
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"
],
"minProtocolVersion": "TLSv1_0"
}
]
},
{
"name": "AppGwSslPolicy20170401",
"id": "/subscriptions/subid/resourceGroups//providers/Microsoft.Network/ApplicationGatewayAvailableSslOptions/default/ApplicationGatewaySslPredefinedPolicy/AppGwSslPolicy20170401",
"properties": {
"cipherSuites": [
"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA"
],
"minProtocolVersion": "TLSv1_1"
}
},
{
"name": "AppGwSslPolicy20170401S",
"id": "/subscriptions/subid/resourceGroups//providers/Microsoft.Network/ApplicationGatewayAvailableSslOptions/default/ApplicationGatewaySslPredefinedPolicy/AppGwSslPolicy20170401S",
"properties": {
"cipherSuites": [
"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA"
],
"minProtocolVersion": "TLSv1_2"
}
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
"ipTags": {
"type": "array",
"items": {
"$ref": "#/definitions/IpTag"
"$ref": "./publicIpAddress.json#/definitions/IpTag"
},
"description": "The list of tags associated with the public IP prefix."
},
Expand Down Expand Up @@ -434,19 +434,6 @@
},
"description": "Response for ListPublicIpPrefixes API service call."
},
"IpTag": {
"properties": {
"ipTagType": {
"type": "string",
"description": "Gets or sets the ipTag type: Example FirstPartyUsage."
},
"tag": {
"type": "string",
"description": "Gets or sets value of the IpTag associated with the public IP. Example SQL, Storage etc"
}
},
"description": "Contains the IpTag associated with the object"
},
"ReferencedPublicIpAddress": {
"properties": {
"id": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
"ipTags": {
"type": "array",
"items": {
"$ref": "#/definitions/IpTag"
"$ref": "./publicIpAddress.json#/definitions/IpTag"
},
"description": "The list of tags associated with the public IP prefix."
},
Expand Down Expand Up @@ -434,19 +434,6 @@
},
"description": "Response for ListPublicIpPrefixes API service call."
},
"IpTag": {
"properties": {
"ipTagType": {
"type": "string",
"description": "Gets or sets the ipTag type: Example FirstPartyUsage."
},
"tag": {
"type": "string",
"description": "Gets or sets value of the IpTag associated with the public IP. Example SQL, Storage etc"
}
},
"description": "Contains the IpTag associated with the object"
},
"ReferencedPublicIpAddress": {
"properties": {
"id": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
"ipTags": {
"type": "array",
"items": {
"$ref": "#/definitions/IpTag"
"$ref": "./publicIpAddress.json#/definitions/IpTag"
},
"description": "The list of tags associated with the public IP prefix."
},
Expand Down Expand Up @@ -434,19 +434,6 @@
},
"description": "Response for ListPublicIpPrefixes API service call."
},
"IpTag": {
"properties": {
"ipTagType": {
"type": "string",
"description": "Gets or sets the ipTag type: Example FirstPartyUsage."
},
"tag": {
"type": "string",
"description": "Gets or sets value of the IpTag associated with the public IP. Example SQL, Storage etc"
}
},
"description": "Contains the IpTag associated with the object"
},
"ReferencedPublicIpAddress": {
"properties": {
"id": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
"ipTags": {
"type": "array",
"items": {
"$ref": "#/definitions/IpTag"
"$ref": "./publicIpAddress.json#/definitions/IpTag"
},
"description": "The list of tags associated with the public IP prefix."
},
Expand Down Expand Up @@ -434,19 +434,6 @@
},
"description": "Response for ListPublicIpPrefixes API service call."
},
"IpTag": {
"properties": {
"ipTagType": {
"type": "string",
"description": "Gets or sets the ipTag type: Example FirstPartyUsage."
},
"tag": {
"type": "string",
"description": "Gets or sets value of the IpTag associated with the public IP. Example SQL, Storage etc"
}
},
"description": "Contains the IpTag associated with the object"
},
"ReferencedPublicIpAddress": {
"properties": {
"id": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"parameters": {
"api-version": "2019-07-01",
"subscriptionId": "subid",
"resourceGroupName": "rg1",
"networkWatcherName": "nw1",
"connectionMonitorName": "cm1",
"parameters": {
"location": "eastus",
"properties": {
"source": {
"resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1"
},
"destination": {
"address": "bing.com",
"port": 80
},
"monitoringIntervalInSeconds": 60
}
}
},
"responses": {
"200": {
"body": {
"name": "cm1",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/networkWatchers/nw1/connectionMonitors/cm1",
"etag": "W/\"e7497f26-5f09-4559-900b-fe98f3dedb6f\"",
"properties": {
"provisioningState": "Updating",
"source": {
"resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1",
"port": 0
},
"destination": {
"address": "bing.com",
"port": 80
},
"monitoringIntervalInSeconds": 60,
"autoStart": true,
"monitoringStatus": "NotStarted"
},
"location": "eastus",
"type": "Microsoft.Network/networkWatchers/connectionMonitors"
}
},
"201": {
"body": {
"name": "cm1",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/networkWatchers/nw1/connectionMonitors/cm1",
"etag": "W/\"e7497f26-5f09-4559-900b-fe98f3dedb6f\"",
"properties": {
"provisioningState": "Updating",
"source": {
"resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1",
"port": 0
},
"destination": {
"address": "bing.com",
"port": 80
},
"monitoringIntervalInSeconds": 60,
"autoStart": true,
"monitoringStatus": "NotStarted"
},
"location": "eastus",
"type": "Microsoft.Network/networkWatchers/connectionMonitors"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"parameters": {
"api-version": "2019-07-01",
"subscriptionId": "subid",
"resourceGroupName": "rg1",
"networkWatcherName": "nw1",
"connectionMonitorName": "cm1"
},
"responses": {
"204": {},
"202": {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"parameters": {
"api-version": "2019-07-01",
"subscriptionId": "subid",
"resourceGroupName": "rg1",
"networkWatcherName": "nw1",
"connectionMonitorName": "cm1"
},
"responses": {
"200": {
"body": {
"name": "cm1",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/networkWatchers/nw1/connectionMonitors/cm1",
"etag": "W/\"00000000-0000-0000-0000-000000000000\"",
"properties": {
"provisioningState": "Succeeded",
"source": {
"resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1",
"port": 0
},
"destination": {
"address": "bing.com",
"port": 80
},
"monitoringIntervalInSeconds": 60,
"autoStart": true,
"startTime": "2018-01-08T03:42:33.3387305Z",
"monitoringStatus": "Running"
},
"location": "centraluseuap",
"type": "Microsoft.Network/networkWatchers/connectionMonitors"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"parameters": {
"api-version": "2019-07-01",
"subscriptionId": "subid",
"resourceGroupName": "rg1",
"networkWatcherName": "nw1"
},
"responses": {
"200": {
"body": {
"value": [
{
"name": "cm1",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/networkWatchers/nw1/connectionMonitors/cm1",
"etag": "W/\"00000000-0000-0000-0000-000000000000\"",
"properties": {
"provisioningState": "Succeeded",
"source": {
"resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1",
"port": 0
},
"destination": {
"address": "bing.com",
"port": 80
},
"monitoringIntervalInSeconds": 60,
"autoStart": true,
"startTime": "2018-01-08T03:42:33.3387305Z",
"monitoringStatus": "Running"
},
"location": "centraluseuap",
"type": "Microsoft.Network/networkWatchers/connectionMonitors"
},
{
"name": "cm2",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/networkWatchers/nw1/connectionMonitors/cm2",
"etag": "W/\"00000000-0000-0000-0000-000000000000\"",
"properties": {
"provisioningState": "Succeeded",
"source": {
"resourceId": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm2",
"port": 0
},
"destination": {
"address": "google.com",
"port": 80
},
"monitoringIntervalInSeconds": 30,
"autoStart": true,
"startTime": "2018-01-08T05:42:33.3387305Z",
"monitoringStatus": "Running"
},
"location": "centraluseuap",
"type": "Microsoft.Network/networkWatchers/connectionMonitors"
}
]
}
}
}
}
Loading