2017-09-19
- Added
schemas
field to services in the catalog that brokers can use to declare the configuration parameters their service accepts for creating a service instance, updating a service instance and creating a service binding. - Added
context
field to request body for creating a service binding. - Added warning text about using characters outside of the "Unreserved Characters" set in IDs.
- Added information about
volume_mounts
objects. instance_id
andbinding_id
MUST be globally unique non-empty strings.- Allow non-BasicAuth authentication mechanisms.
- Added a Getting Started page including sample service brokers.
- Define what a CLI-friendly string is.
- Add service/plan metadata conventions.
- Add originating identity HTTP header.
2017-06-13
- Added
context
field to request body for provisioning a service instance (PUT /v2/service_instances/:instance_id
) and updating a service instance (PATCH /v2/service_instances/:instance_id
). Also added the profile.md file describing RECOMMENDED usage patterns for environment-specific extensions and variations.context
will replace theorganization_guid
andspace_guid
request fields in future versions of the specification. In the interim, both SHOULD be used to ensure interoperability with old and new implementations. - The specification now uses RFC2119 keywords to make it clearer when things are REQUIRED rather than OPTIONAL or RECOMMENDED.
- Request and response parameters of type string, if present, MUST be a non-empty string.
- Cleaned up text around status codes in responses, clarifying when they MUST be returned.
- Added clarity around the
app_guid
request field. - Clarified the semantics of
plan_id
andparameters
fields in the updating a service instance request body. - Clarified the default value of the
plan_updateable
field. - Clarified when
route_service_url
is REQUIRED and when brokers can return extra data in bindings.
2016-11-15
- Added field
bindable
to plan objects in /v2/catalog response. This allows services to have both bindable and non-bindable plans.
2016-08-01
- Service bind responses now include an optional field called
volume_mounts
. Backward incompatible changes tovolume_mounts
field in service bind response from experimental 2.9 format to final format.
2016-06-14
-
last_operation
endpoint now supportsservice_id
andplan_id
as request parameters. -
A new field
operation
may now be returned by brokers in asynchronous responses for Provision, Update, Deprovision. This field enables brokers to provide an internal identifier for the operation that clients should provide back to the service broker when polling thelast_operation
endpoint.
2015-11-8
-
In support for Route Services, service broker may now return a
route_service_url
in the response for a create binding request. -
A broker must specify
requires: ["route_forwarding"]
in its catalog endpoint if it supports Route Services. -
Clients may now send a new field
bind_resource
with the bind request, under which the parameters required for the binding are found. This would include, for example,app_guid
for an app binding androute
for a route binding. For backwards compatibility,app_guid
will remain a top-level key in addition to being included in thebind_resource
.
2015-10-08
-
Added support for Asynchronous Operations. Brokers may now return a 202 Accepted in response to provision, update, or deprovision requests to indicate the requested operation is in progress.
-
The parameter
accepts_incomplete=true
must be passed by the broker client with requests for provision, update, or deprovision to indicate support for an asynchronous response. The broker can then choose to execute the request synchronously or asynchronously. -
Added support for querying
last_operation
status at a new endpoint:GET /v2/service_instances/:guid/last_operation
2015-07-23
-
app_guid
field is no longer guaranteed to be included with create service binding requests -
New field
service_id
is required with update service instance requests
2015-06-23
- Added support for Arbitrary Parameters: service-specific configuration parameters that can be included with provision, update and bind requests
2014-10-31
- Added support for broker clients to change the service plan for a specified service instance using new Update Service Instance endpoint
2014-04-23
- Added
dashboard_client
field to /v2/catalog to enable broker client to provision OAuth client for a service dashboard
2014-03-31
- Added field
free
for service plan in catalog endpoint
2013-12-27
- New field
app_guid
is required with bind requests