Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
1fb740c
Adds base for updating Microsoft.Network from version stable/2019-06-…
anton-evseev Aug 21, 2019
845c73f
Updates readme
anton-evseev Aug 21, 2019
bb6aebd
Updates API version in new specs and examples
anton-evseev Aug 21, 2019
1d9d69e
Update API version in VMSS' specs (#7008)
anton-evseev Aug 22, 2019
add7021
Add reference to existing base definition & fix errors in description…
anton-evseev Aug 26, 2019
daa1ba7
Improve Network's descriptions (#6974)
anton-evseev Aug 28, 2019
ebcbf37
New Skus and Generations for VirtualNetworkVpnGateways (#7089)
ritwikbasu Sep 4, 2019
1494051
Add VirtualRouter top level resource Identity under Microsoft.Network…
naveenchekuri Sep 5, 2019
e3521d7
Fixed required properties in TrafficAnalyticsProperties: networkWatce…
irrogozh Sep 5, 2019
d049b69
Added traffic selector policy definition to virtualNetworkGateway.jso…
ejdelrio Sep 5, 2019
73e01eb
Support for changes in ConnectionMonitor API (#7075)
anton-evseev Sep 6, 2019
93187ce
Updating Network Config Diagnostics API desc (#7117)
damendo Sep 6, 2019
eb01252
Added priority field in the request routing rule (#7131)
anshul291995 Sep 6, 2019
2965dc3
Added new owner to Azure Networking (#7145)
MikhailTryakhov Sep 9, 2019
c5b4af1
Add Mssql value to Application Rule Type enum (#7169)
andreycpp Sep 11, 2019
0905cd7
Add privateLinkConnectionProperties to network interface. (#7189)
bowen0106 Sep 13, 2019
bb188c8
Brooklyn Gateway Packet Capture feature (#7151)
Khushboo-Baheti Sep 13, 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
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
/specification/mobileengagement/ @pshrosbree
/specification/monitor/ @gucalder
/specification/mysql/ @qingqingyuan
/specification/network/ @MikhailTryakhov
/specification/network/ @MikhailTryakhov @number213
/specification/notificationhubs/ @amolr @smithab
/specification/operationalinsights/ @sw47
/specification/operationsmanagement/ @dashimi16
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"parameters": {
"api-version": "2019-06-01",
"subscriptionId": "subid",
"resourceGroupName": "rg1",
"networkWatcherName": "nw1",
"connectionMonitorName": "cm1",
"parameters": {
"tags": {
"tag1": "value1",
"tag2": "value2"
}
}
},
"responses": {
"200": {
"body": {
"name": "cm1",
"id": "/subscriptions/subid/`/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": "2019-09-04T02:48:10.6797393Z",
"monitoringStatus": "Running"
},
"tags": {
"tag1": "value1",
"tag2": "value2"
},
"type": "Microsoft.Network/networkWatchers/connectionMonitors",
"location": "westcentralus"
}
}
}
}
Loading