Skip to content

Commit

Permalink
Network Watcher S360 Correctness Fix (Azure#20804)
Browse files Browse the repository at this point in the history
* Adding runningOperationIds and Error

* prettier fix
  • Loading branch information
supriyajha-ms authored and anandanthony committed Dec 16, 2022
1 parent c23981a commit 34c4ade
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"location": "eastus",
"tags": {},
"properties": {
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"runningOperationIds": []
}
}
},
Expand All @@ -32,7 +33,8 @@
"location": "eastus",
"tags": {},
"properties": {
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"runningOperationIds": []
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"location": "eastus",
"tags": {},
"properties": {
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"runningOperationIds": []
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"location": "eastus",
"tags": {},
"properties": {
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"runningOperationIds": []
}
},
{
Expand All @@ -27,7 +28,8 @@
"location": "eastus",
"tags": {},
"properties": {
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"runningOperationIds": []
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"location": "eastus",
"tags": {},
"properties": {
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"runningOperationIds": []
}
},
{
Expand All @@ -26,7 +27,8 @@
"location": "westus",
"tags": {},
"properties": {
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"runningOperationIds": []
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"tag2": "value2"
},
"properties": {
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"runningOperationIds": []
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2346,7 +2346,7 @@
"properties": {
"error": {
"title": "Error",
"$ref": "./network.json#/definitions/ErrorDetails",
"$ref": "./network.json#/definitions/Error",
"description": "The error details object."
}
}
Expand Down Expand Up @@ -2377,6 +2377,14 @@
"readOnly": true,
"$ref": "./network.json#/definitions/ProvisioningState",
"description": "The provisioning state of the network watcher resource."
},
"runningOperationIds": {
"type": "array",
"description": "List of running operation IDs.",
"items": {
"type": "integer",
"format": "int32"
}
}
},
"description": "The network watcher properties."
Expand Down

0 comments on commit 34c4ade

Please sign in to comment.