Skip to content
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 @@ -61,7 +61,7 @@ interface Domains {
update is ArmCustomPatchSync<
Domain,
PatchModel = DomainPatchResource,
Response = ArmResponse<Domain> | (ArmAcceptedResponse & {
Response = ArmResponse<Domain> | (AcceptedResponse & {
@bodyRoot
_: Domain;
}),
Expand Down Expand Up @@ -113,7 +113,7 @@ interface Domains {
renew is ArmResourceActionSync<
Domain,
void,
OkResponse | ArmAcceptedResponse | NoContentResponse,
OkResponse | AcceptedResponse | NoContentResponse,
Error = DefaultErrorResponse
>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -600,13 +600,6 @@
"description": "The request has been accepted for processing, but processing has not yet completed.",
"schema": {
"$ref": "#/definitions/Domain"
},
"headers": {
"Retry-After": {
"type": "integer",
"format": "int32",
"description": "The Retry-After header can indicate how long the client should wait before polling the operation status."
}
}
},
"default": {
Expand Down Expand Up @@ -991,14 +984,7 @@
"description": "The request has succeeded."
},
"202": {
"description": "Resource operation accepted.",
"headers": {
"Retry-After": {
"type": "integer",
"format": "int32",
"description": "The Retry-After header can indicate how long the client should wait before polling the operation status."
}
}
"description": "The request has been accepted for processing, but processing has not yet completed."
},
"204": {
"description": "There is no content to send for this request, but the headers may be useful."
Expand Down
Loading