Update a Service Instance
PUT /v2/service_instances/:guid
Request
Route
PUT /v2/service_instances/e42c30a9-bdc0-441d-aac5-0dcd4fd6c28c?accepts_incomplete=true
Parameters
Name |
Description |
Valid Values |
Example Values |
accepts_incomplete
|
Set to `true` if the client allows asynchronous provisioning. The cloud controller may respond before the service is ready for use.
|
|
|
accepts_incomplete: true
Body
Name |
Description |
Default |
Valid Values |
Example Values |
name
|
The new name for the service instance
|
|
|
|
service_plan_guid
|
The new plan guid for the service instance
|
|
|
- 6c4bd80f-4593-41d1-a2c9-b20cb65ec76e
|
parameters
|
Arbitrary parameters to pass along to the service broker. Must be a JSON object
|
|
|
|
tags
|
A list of tags for the service instance. NOTE: Updating the tags will overwrite any old tags.
|
|
|
- ["db"]
- ["accounting", "mongodb"]
|
{"service_plan_guid":"ad397940-7bfd-4bf4-99d7-c6b2a8eb6360","parameters":{"the_service_broker":"wants this object"}}
Headers
cURL
curl "https://api.[your-domain.com]/v2/service_instances/e42c30a9-bdc0-441d-aac5-0dcd4fd6c28c?accepts_incomplete=true" -d '{"service_plan_guid":"ad397940-7bfd-4bf4-99d7-c6b2a8eb6360","parameters":{"the_service_broker":"wants this object"}}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE0IiwiZW1haWwiOiJlbWFpbC0xM0Bzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDQ3MTE2ODI1fQ.lvMAADY7hxRjMT2qgMCqPVbaoJ-C3ZDiZEz7LHwbT1Y" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
202 Accepted
Body
Name |
Description |
Valid Values |
name
|
The human-readable name of the service instance.
|
|
credentials
|
The service broker-provided credentials to use this service.
|
|
service_plan_guid
|
The service plan GUID that this service instance is utilizing.
|
|
space_guid
|
The space GUID that this service instance belongs to.
|
|
gateway_data
|
|
|
dashboard_url
|
The service broker-provided URL to access administrative features of the service instance. May be null.
|
|
type
|
The type of service instance.
|
- managed_service_instance
- user_provided_service_instance
|
last_operation
|
The status of the last operation requested on the service instance. May be null.
|
|
last_operation.type
|
The type of operation that was last performed or currently being performed on the service instance
|
|
last_operation.state
|
The status of the last operation or current operation being performed on the service instance.
|
- in progress
- succeeded
- failed
|
last_operation.description
|
The service broker-provided description of the operation. May be null.
|
|
last_operation.updated_at
|
The timestamp that the Cloud Controller last checked the service instance state from the broker.
|
|
space_url
|
The relative path to the space resource that this service instance belongs to.
|
|
service_plan_url
|
The relative path to the service plan resource that this service instance belongs to.
|
|
service_binding_url
|
The relative path to the service bindings that this service instance is bound to.
|
|
routes_url
|
Routes bound to the service instance. Requests to these routes will be forwarded to the service instance.
|
|
tags
|
A list of tags for the service instance
|
|
{
"metadata": {
"guid": "e42c30a9-bdc0-441d-aac5-0dcd4fd6c28c",
"url": "/v2/service_instances/e42c30a9-bdc0-441d-aac5-0dcd4fd6c28c",
"created_at": "2015-11-03T00:53:45Z",
"updated_at": null
},
"entity": {
"name": "name-98",
"credentials": {
"creds-key-29": "creds-val-29"
},
"service_plan_guid": "9210d05b-3437-40fa-8601-46b8849f574e",
"space_guid": "3801dd4e-d969-4a76-b44b-a5f38f238d61",
"gateway_data": null,
"dashboard_url": null,
"type": "managed_service_instance",
"last_operation": {
"type": "update",
"state": "in progress",
"description": "",
"updated_at": "2015-11-03T00:53:45Z",
"created_at": "2015-11-03T00:53:45Z"
},
"tags": [
],
"space_url": "/v2/spaces/3801dd4e-d969-4a76-b44b-a5f38f238d61",
"service_plan_url": "/v2/service_plans/9210d05b-3437-40fa-8601-46b8849f574e",
"service_bindings_url": "/v2/service_instances/e42c30a9-bdc0-441d-aac5-0dcd4fd6c28c/service_bindings",
"service_keys_url": "/v2/service_instances/e42c30a9-bdc0-441d-aac5-0dcd4fd6c28c/service_keys",
"routes_url": "/v2/service_instances/e42c30a9-bdc0-441d-aac5-0dcd4fd6c28c/routes"
}
}
Headers