Skip to content
This repository was archived by the owner on Jun 2, 2021. It is now read-only.

Commit fa2e0b4

Browse files
author
Derik Evangelista
committed
v3(services): update docs for delete SI
1 parent b9204b5 commit fa2e0b4

File tree

1 file changed

+22
-1
lines changed
  • docs/v3/source/includes/experimental_resources/service_instances

1 file changed

+22
-1
lines changed

docs/v3/source/includes/experimental_resources/service_instances/_delete.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,34 @@ curl "https://api.example.org/v3/service_instances/[guid]" \
1111
```
1212

1313
```
14-
Example Response
14+
Example Response for User-provided Service Instances
1515
```
1616

1717
```http
1818
HTTP/1.1 204 No Content
1919
```
2020

21+
```
22+
Example Response for Managed Service Instance
23+
```
24+
25+
```http
26+
HTTP/1.1 202 Accepted
27+
Content-Type: application/json
28+
Location: https://api.example.org/v3/jobs/af5c57f6-8769-41fa-a499-2c84ed896788
29+
```
30+
31+
32+
This endpoint deletes a service instance. When deleting a user-provided service instance, this endpoint will
33+
34+
This endpoint deletes a service instance. User provided service instances do not require interactions with
35+
service brokers, therefore the API will respond synchronously to the delete request. For managed service instances,
36+
the API will respond asynchronously.
37+
38+
If failures occur while deleting managed service instances, the API might execute orphan mitigation steps
39+
accordingly to cases outlined in the [OSBAPI specification](https://github.com/openservicebrokerapi/servicebroker/blob/master/spec.md#orphan-mitigation)
40+
41+
2142
#### Definition
2243
`DELETE /v3/service_instances/:guid`
2344

0 commit comments

Comments
 (0)