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

S360 fix EdgeOrder 2022-05-01-preview #23293

Merged
merged 2 commits into from
Mar 29, 2023
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 @@ -646,7 +646,13 @@
"description": "Address deleted."
},
"202": {
"description": "Accepted request for delete address."
"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 Down Expand Up @@ -709,7 +715,13 @@
],
"responses": {
"202": {
"description": "Accepted request for address update."
"description": "Accepted request for address update.",
"headers": {
"Location": {
"description": "The URL to track the status of the long running operation.",
"type": "string"
}
}
},
"200": {
"description": "Address resource object.",
Expand Down Expand Up @@ -1004,7 +1016,13 @@
"description": "Order item deleted."
},
"202": {
"description": "Accepted delete request for an order item."
"description": "Accepted delete request for an order item.",
"headers": {
"Location": {
"description": "The URL to track the status of the long running operation.",
"type": "string"
}
}
},
"204": {
"description": "No content. Order item deleted."
Expand Down Expand Up @@ -1067,7 +1085,13 @@
],
"responses": {
"202": {
"description": "Accepted request for order item update."
"description": "Accepted request for order item update.",
"headers": {
"Location": {
"description": "The URL to track the status of the long running operation.",
"type": "string"
}
}
},
"200": {
"description": "Order item resource object.",
Expand Down Expand Up @@ -1188,7 +1212,13 @@
"description": "Success."
},
"202": {
"description": "Return order item request accepted."
"description": "Return order item request accepted.",
"headers": {
"Location": {
"description": "The URL to track the status of the long running operation.",
"type": "string"
}
}
},
"default": {
"description": "Error response describing reason for operation failure.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/YourSubscriptionId/providers/Microsoft.EdgeOrder/locations/westus/operationResults/operationid?api-version=2022-05-01-preview"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
]
},
"responses": {
"202": {},
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/YourSubscriptionId/providers/Microsoft.EdgeOrder/locations/westus/operationResults/operationid?api-version=2022-05-01-preview"
}
},
"200": {},
"204": {}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
},
"responses": {
"200": {},
"202": {}
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/YourSubscriptionId/providers/Microsoft.EdgeOrder/locations/westus/operationResults/operationid?api-version=2022-05-01-preview"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@
"type": "Microsoft.EdgeOrder/addresses"
}
},
"202": {}
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/YourSubscriptionId/providers/Microsoft.EdgeOrder/locations/westus/operationResults/operationid?api-version=2022-05-01-preview"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@
"type": "Microsoft.EdgeOrder/orderItems"
}
},
"202": {}
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/YourSubscriptionId/providers/Microsoft.EdgeOrder/locations/westus/operationResults/operationid?api-version=2022-05-01-preview"
}
}
}
}