Skip to content

Commit

Permalink
keep address asynch
Browse files Browse the repository at this point in the history
  • Loading branch information
abaranwal-ms committed Dec 29, 2023
1 parent ff3e411 commit caa298e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -648,8 +648,14 @@
}
],
"responses": {
"200": {
"description": "Address deleted."
"202": {
"description": "Accepted request for delete address.",
"headers": {
"Location": {
"description": "The URL to track the status of the long running operation.",
"type": "string"
}
}
},
"204": {
"description": "No content. Address deleted."
Expand All @@ -661,6 +667,7 @@
}
}
},
"x-ms-long-running-operation": true,
"x-ms-examples": {
"DeleteAddressByName": {
"$ref": "./examples/DeleteAddressByName.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
]
},
"responses": {
"200": {},
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/eb5dc900-6186-49d8-b7d7-febd866fdc1d/providers/Microsoft.EdgeOrder/locations/westus/operationResults/operationid?api-version=2024-02-01"
}
},
"204": {}
}
}

0 comments on commit caa298e

Please sign in to comment.