Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make patch operations async for VirtualWAN VpnGateways and P2SVpnGateways. #9833

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
}
},
"responses": {
"202": {},
"200": {
"body": {
"name": "p2sVpnGateway1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
}
},
"responses": {
"202": {},
"200": {
"body": {
"name": "gateway1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1828,6 +1828,9 @@
}
],
"responses": {
"202": {
"description": "Accepted and the operation will complete asynchronously."
},
"200": {
"description": "Request successful. Returns the details of the updated gateway.",
"schema": {
Expand All @@ -1840,6 +1843,10 @@
"$ref": "./network.json#/definitions/CloudError"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "azure-async-operation"
}
},
"delete": {
Expand Down Expand Up @@ -2536,6 +2543,9 @@
}
],
"responses": {
"202": {
"description": "Accepted and the operation will complete asynchronously."
},
"200": {
"description": "Request successful. Returns the details of the updated gateway.",
"schema": {
Expand All @@ -2548,6 +2558,10 @@
"$ref": "./network.json#/definitions/CloudError"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "azure-async-operation"
}
},
"delete": {
Expand Down