Skip to content

Commit

Permalink
Merge pull request #2 from Azure/network-july-release
Browse files Browse the repository at this point in the history
Network july release
  • Loading branch information
Kawilki-M authored Sep 3, 2020
2 parents ac92edb + 942dfad commit 9709350
Show file tree
Hide file tree
Showing 17 changed files with 1,036 additions and 99 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3461,10 +3461,10 @@
},
"context": {
"readOnly": true,
"type": "array",
"description": "Provides additional context on the issue.",
"items": {
"$ref": "#/definitions/IssueContext"
"type": "object",
"description": "Provides additional context on links.",
"additionalProperties": {
"type": "string"
}
},
"resourceId": {
Expand All @@ -3480,19 +3480,16 @@
"roundTripTimeMin": {
"description": "Minimum roundtrip time in milliseconds.",
"readOnly": true,
"format": "int32",
"type": "integer"
},
"roundTripTimeAvg": {
"description": "Average roundtrip time in milliseconds.",
"readOnly": true,
"format": "int32",
"type": "integer"
},
"roundTripTimeMax": {
"description": "Maximum roundtrip time in milliseconds.",
"readOnly": true,
"format": "int32",
"type": "integer"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"expressRoutePort": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/expressRoutePorts/portName"
},
"authorizationKey": "b0be57f5-1fba-463b-adec-ffe767354cdd",
"bandwidthInGbps": 10
}
}
Expand All @@ -34,6 +35,7 @@
"expressRoutePort": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/expressRoutePorts/portName"
},
"authorizationKey": "b0be57f5-1fba-463b-adec-ffe767354cdd",
"bandwidthInGbps": 10,
"circuitProvisioningState": "Enabled",
"allowClassicOperations": false,
Expand Down Expand Up @@ -61,6 +63,7 @@
"expressRoutePort": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/expressRoutePorts/portName"
},
"authorizationKey": "b0be57f5-1fba-463b-adec-ffe767354cdd",
"bandwidthInGbps": 10,
"circuitProvisioningState": "Enabled",
"allowClassicOperations": false,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"parameters": {
"expressRoutePortName": "expressRoutePortName",
"resourceGroupName": "rg1",
"authorizationName": "authorizatinName",
"api-version": "2020-07-01",
"subscriptionId": "subid",
"authorizationParameters": {
"properties": {}
}
},
"responses": {
"201": {
"body": {
"name": "authorizationName",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/ExpressRoutePorts/expressRoutePortName/authorizations/authorizationName",
"etag": "W/\"e22dd4b2-4c24-44cf-b702-70a472b62914\"",
"properties": {
"provisioningState": "Updating",
"authorizationUseStatus": "Available",
"circuit": ""
},
"type": "Microsoft.Network/expressRoutePorts/authorizations"
}
},
"200": {
"body": {
"name": "authorizationName",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/ExpressRoutePorts/expressRoutePortName/authorizations/authorizationName",
"etag": "W/\"e22dd4b2-4c24-44cf-b702-70a472b62914\"",
"properties": {
"provisioningState": "Updating",
"authorizationUseStatus": "Available",
"circuit": ""
},
"type": "Microsoft.Network/expressRoutePorts/authorizations"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"parameters": {
"expressRoutePortName": "expressRoutePortName",
"resourceGroupName": "rg1",
"api-version": "2020-07-01",
"subscriptionId": "subid",
"authorizationName": "authorizationName"
},
"responses": {
"200": {},
"202": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"parameters": {
"expressRoutePortName": "expressRoutePortName",
"resourceGroupName": "rg1",
"api-version": "2020-07-01",
"subscriptionId": "subid",
"authorizationName": "authorizationName"
},
"responses": {
"200": {
"body": {
"name": "authorizationName",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/ExpressRoutePorts/expressRoutePortName/authorizations/authorizationName",
"etag": "W/\"e33c875f-48df-4a91-b7d3-eb95b5ddbb89\"",
"properties": {
"provisioningState": "Succeeded",
"authorizationKey": "authKey",
"authorizationUseStatus": "Available",
"circuit": ""
},
"type": "Microsoft.Network/expressRoutePorts/authorizations"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"parameters": {
"expressRoutePortName": "expressRoutePortName",
"resourceGroupName": "rg1",
"api-version": "2020-07-01",
"subscriptionId": "subid"
},
"responses": {
"200": {
"body": {
"value": [
{
"name": "authorizationName",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/ExpressRoutePorts/expressRoutePortName/authorizations/authorizationName",
"etag": "W/\"e33c875f-48df-4a91-b7d3-eb95b5ddbb89\"",
"properties": {
"provisioningState": "Succeeded",
"authorizationKey": "authKey",
"authorizationUseStatus": "Available",
"circuit": ""
},
"type": "Microsoft.Network/expressRoutePorts/authorizations"
}
]
}
}
}
}
Loading

0 comments on commit 9709350

Please sign in to comment.