You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 2, 2021. It is now read-only.
Read more about [the `include` parameter](#include) and [the `fields` parameter](#fields).
177
+
169
178
170
179
## New Concepts
171
180
@@ -366,8 +375,9 @@ This table shows how V2 resources map to their respective V3 counterparts. Note
366
375
|Resource Matches|Resource Matches|
367
376
|Routes, Route Mappings|Routes|[Routes in V3](#routes-in-v3)|
368
377
|Security Groups|Security Groups|[Security Groups in V3](#security-groups-in-v3)|
378
+
|Services|Service Offerings|[Service Offerings in V3](#service-offerings-in-v3)
369
379
|Service Bindings, Service Keys|Service Keys|
370
-
|Service Brokers|Service Brokers|
380
+
|Service Brokers|Service Brokers|[Service Brokers in V3](#service-brokers-in-v3)
371
381
|Service Instances, User-Provided Service Instances|Service Instances|
372
382
|Spaces|Spaces|
373
383
|Space Quota Definitions|Space Quotas|[Space Quotas in V3](#space-quotas-in-v3)
@@ -428,13 +438,44 @@ In V2, the endpoint to apply a security group to a space only includes the lifec
428
438
429
439
In V3, the endpoint to apply a security group to a space includes the lifecycle. For example to unbind a security group from the running lifecycle, one would `DELETE /v3/security_groups/:guid/relationships/running_spaces/:space_guid`.
430
440
441
+
### Service Offerings in V3
442
+
443
+
Services endpoints are now replaced by [Service Offerings endpoints](#service-offerings) at `/v3/service_offerings`
444
+
445
+
Some services related endpoints nested in other resources have been translated to filters on `service_offerings`, with the advantage that filters accept multiple values and can be combined.
446
+
447
+
`GET /v2/organizations/:guid/services` is now `GET /v3/service_offerings?organization_ids=guid`.
448
+
449
+
`GET /v2/spaces/:guid/services` is now `GET /v3/service_offerings?space_ids=guid`
450
+
451
+
Service `label` attribute has been renamed to `name` and `names` is a valid filter key.
452
+
453
+
In V2, `service_broker_name and service_broker_guid` where top level attributes in the response. V3 returns this values only if requested using the [`fields` syntax](#fields). Refer to [Service Offerings endpoints](#service-offerings) for further information.
454
+
455
+
The structure of the Service Offering object as well as some attribute names have changed from V2 to V3:
Read more about the [service offering resource](#service-offerings).
470
+
431
471
### Service Brokers in V3
432
472
433
473
#### Create, Update and Delete
434
474
435
475
436
476
In V3 these endpoints are now asynchronous. See [Asynchronous operations](#asynchronous-operations) and [Service Broker Jobs](#service-broker-jobs) for more information.
437
477
478
+
Read more about the [service broker resource](#service-brokers).
0 commit comments