Skip to content

Commit e501ae8

Browse files
Network Watcher S360 Correctness Fix for 2022-05-01 (#21341)
* Network Watcher S360 Correctness Fix for 2022-05-01 * prettier fix
1 parent 2097e71 commit e501ae8

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
lines changed

specification/network/resource-manager/Microsoft.Network/stable/2022-05-01/examples/NetworkWatcherCreate.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"location": "eastus",
2020
"tags": {},
2121
"properties": {
22-
"provisioningState": "Succeeded"
22+
"provisioningState": "Succeeded",
23+
"runningOperationIds": []
2324
}
2425
}
2526
},
@@ -32,7 +33,8 @@
3233
"location": "eastus",
3334
"tags": {},
3435
"properties": {
35-
"provisioningState": "Succeeded"
36+
"provisioningState": "Succeeded",
37+
"runningOperationIds": []
3638
}
3739
}
3840
}

specification/network/resource-manager/Microsoft.Network/stable/2022-05-01/examples/NetworkWatcherGet.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"location": "eastus",
1616
"tags": {},
1717
"properties": {
18-
"provisioningState": "Succeeded"
18+
"provisioningState": "Succeeded",
19+
"runningOperationIds": []
1920
}
2021
}
2122
}

specification/network/resource-manager/Microsoft.Network/stable/2022-05-01/examples/NetworkWatcherList.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"location": "eastus",
1717
"tags": {},
1818
"properties": {
19-
"provisioningState": "Succeeded"
19+
"provisioningState": "Succeeded",
20+
"runningOperationIds": []
2021
}
2122
},
2223
{
@@ -27,7 +28,8 @@
2728
"location": "eastus",
2829
"tags": {},
2930
"properties": {
30-
"provisioningState": "Succeeded"
31+
"provisioningState": "Succeeded",
32+
"runningOperationIds": []
3133
}
3234
}
3335
]

specification/network/resource-manager/Microsoft.Network/stable/2022-05-01/examples/NetworkWatcherListAll.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"location": "eastus",
1616
"tags": {},
1717
"properties": {
18-
"provisioningState": "Succeeded"
18+
"provisioningState": "Succeeded",
19+
"runningOperationIds": []
1920
}
2021
},
2122
{
@@ -26,7 +27,8 @@
2627
"location": "westus",
2728
"tags": {},
2829
"properties": {
29-
"provisioningState": "Succeeded"
30+
"provisioningState": "Succeeded",
31+
"runningOperationIds": []
3032
}
3133
}
3234
]

specification/network/resource-manager/Microsoft.Network/stable/2022-05-01/examples/NetworkWatcherUpdateTags.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"tag2": "value2"
2525
},
2626
"properties": {
27-
"provisioningState": "Succeeded"
27+
"provisioningState": "Succeeded",
28+
"runningOperationIds": []
2829
}
2930
}
3031
}

specification/network/resource-manager/Microsoft.Network/stable/2022-05-01/networkWatcher.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2346,7 +2346,7 @@
23462346
"properties": {
23472347
"error": {
23482348
"title": "Error",
2349-
"$ref": "./network.json#/definitions/ErrorDetails",
2349+
"$ref": "./network.json#/definitions/Error",
23502350
"description": "The error details object."
23512351
}
23522352
}
@@ -2377,6 +2377,14 @@
23772377
"readOnly": true,
23782378
"$ref": "./network.json#/definitions/ProvisioningState",
23792379
"description": "The provisioning state of the network watcher resource."
2380+
},
2381+
"runningOperationIds": {
2382+
"type": "array",
2383+
"description": "List of running operation IDs.",
2384+
"items": {
2385+
"type": "integer",
2386+
"format": "int32"
2387+
}
23802388
}
23812389
},
23822390
"description": "The network watcher properties."

0 commit comments

Comments
 (0)